tags:

views:

59

answers:

1

Mornin all. I was wondering 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

A: 

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.

digitala