Im using curl to fetch the HTML from anothe web page and display on one of my pages:
$("document").ready(function() {
$("#content").load("curl.php .auction_list_closed");
});
Once the content is returned I want to have another script run. How can I run another line of jQuery once the content has been loaded?
.auction_list_closedrepresentative of? I've not seen that syntax before.