I have the following code:
$(\"#scheduleLink\").trigger(\"click\"); alert(\"text\")
This is the click handler:
$(\"#scheduleL
Use the .load Callback
$("#publicationBlockContent") .load("/Publication/EventSchedule?eventId=" + eventId + "&type=" + type, function(){alert("text");} );
rtm http://api.jquery.com/load/ for additional callback parameters etc.