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
No but there is no reason you couldn't do this:
$.post("ajax.php", {data :data}, function(data){ $("#countries").html(data); var id = $("#countries option:selected").attr("id"); getRegions(id); });