|
I’m just beginning to experiment with jQuery and need
a little help. I’m using it to display reference data for one of
our production teams, and the data changes frequently throughout the day. Here’s
what I’ve got, which works: $(document).ready(function() { $.ajax({ type: "GET",
url: "bentonite.cfm", dataType: "html",
success: function(rpt){ $("#report").empty(); $( "#report" ).append( rpt.responseText ); } });
}); This is fine, but I would like to call the Thanks in advance, Paul |
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
