Here\'s the situ: A page which contains html and using the jQuery libray and tabs jQuery UI plugin loads another page when some tab is clicked. The problem is that when the
The load method offers a callback which is executed after the content has been loaded.
$("#myDiv").load(url, null, function() { //do your stuff here });
Full documentation and examples at jQuery.com: http://docs.jquery.com/Ajax/load