Is there a way to launch an event after html() has been fired? Such as:
$.post(\"ajax.php\", {data :data}, function(data){ $(\"#countries\").html(data, fu
You can include the javascript code in your html response. An inline example:
$("#content").html("hello\");
would update the div and also execute the code.