jquery, once form submit has complete
Mornin all. I was wonde开发者_StackOverflowring if someone could tell me how i go about activating a function in jquery once a form submit to an iframe has completed?
Regards Phil
The form submission can return a javascript block which can call a function in the parent document; eg:
<html><script language="javascript">
window.parent.document.doSomething();
</script></html>
and inside the doSomething()
function you call your jQuery code.
精彩评论