Home Posts etiquetados: 'funcion'

Posts Tagged ‘funcion’

Función: Actualizar automaticamente un DIV (jQuery)

Posted in jQuery, Programacion on Domingo, enero 16th, 2011 at 11:47 3 Comments

Actualizando un poco mi articulo anterior: “jQuery – Actualizar automaticamente un DIV”, que escribiera hace más de un año, les traigo una funcion que puede servir para no escribir tantas veces el mismo código.

CargarDiv = function (objetivo, url)
{$(document).ready(function() {$(objetivo).load(url+"?" + (new Date()).getTime());});}

Continue reading