Código:
Y la funcion JS es onmouseover ejecute lo siguiente:var num2=0; // Funcion para crear lineas de objetos function crear2(obj) { num2++; fi = document.getElementById('fiel2'); contenedor = document.createElement('div'); contenedor.id = 'div'+num2; fi.appendChild(contenedor); ele = document.createElement('input'); // 5 ele.type = 'text'; ele.name = 'fecha_tiempo'+num2; ele.id = 'fecha_tiempo'+num2; ele.readOnly = true; contenedor.appendChild(ele); ele = document.createElement('img'); ele.name = 'imagen_tiempo'+num2; ele.id = 'imagen_tiempo'+num2; ele.src = 'images/cal.gif'; ele.align = 'absmiddle'; ele.onmouseover = "fnInitCalendar(this, 'fecha_tiempo"+num2+"', 'style=calendar.css,close=true')"; contenedor.appendChild(ele); }
Código:
Cualquier ayuda se agradece para hacer funcionar dicha funcion, gracias de antemano. "fnInitCalendar(this, 'variable_input', 'style=calendar.css,close=true')";