Código HTML:
<html>
<head>
<script type="text/javascript">
num=0;
function ver(fil) {
obj=fil.form;
tab = document.createElement('div');
tab.id = 'calendario';
tab.style.padding = "1px";
obj.appendChild(tab);
}
</script>
</head>
<body>
<form>
<input type="button" onclick="ver(this)" />
</form>
</body>
</html>
El problema que estoy teniendo es que no se esta creando mi elemento div. ¿Qué tengo mal?
Espero me puedan ayudar