10/04/2014, 08:39
|
| | Fecha de Ingreso: mayo-2012
Mensajes: 19
Antigüedad: 12 años, 6 meses Puntos: 0 | |
Respuesta: Recargar archivos JS Si si, te la pongo a continuación:
<script>
function showUser(str)
{
if (str=="")
{
document.getElementById('todo').innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
var xmlhttp = new XMLHttpRequest();
}
else
{// code for IE6, IE5
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById('todo').innerHTML=xmlhttp. responseText;
}
}
xmlhttp.open("GET","url"+str,true);
xmlhttp.send();
}
</script>
Entiendo pues, que debería poner una nueva sentencia para ejecutar la función " handler.wookmark(options);" no? |