Tuesday, May 28, 2013

Refreshing Dom Element Using JQuery

    jQuery.fn.redraw = function() {      return this.hide(0, function() {          $(this).show();      });  };    $(el).redraw();