I Have the following code which is called inline as below also. The problem is the alert never fires. In firebug i can see that data is filled with my object, but still the alert doesn't fire. Any ideas?
function update(s_arrive) {
$.post("../base/getDestInfo.asp", { "dest": s_arrive }, function(data) { alert('aa'); }, "json");
}
<input type='text' name="box" onblur="update('AUS');" />
Update: One thing that does work is if I make the request synchronis then its fires.
Update2: IE 8 & Chrome works as expected. Firefox however...not so much.
Update3: After restarting Firefox it worked. Very very very very weird. Closing item.