How Can I Execute The Events In Sequence In Jquery Ajax Function
I have this function $.ajax({ type: 'GET', url: myurl, success: function (data) { $('#dialog-confirm').html(data); $('#dialog-confirm').dialog('open');
Solution 1:
It does, because .html
is synchronous.
If it's not doing that then we need more information.
Post a Comment for "How Can I Execute The Events In Sequence In Jquery Ajax Function"