jquery - Close colorbox (iframe) after submitting form and load new url in parent page -


i'm loading page in iframe colorbox. on page there's form can submitted. close colorbox automatically , load new url in parent page after submitting form. how can realize this?

now use onclick function after submitting form, want done automatically:

<a onclick="parent.$.fn.colorbox.close();" target="_parent" href="http://www.test.com">test</a> 

it's not clear issue is.

generally speaking, you'll want use submit action on iframed form trigger behavior desire. example, can trap event , following:

  • process form submission
  • close colorbox
  • load new uri parent's location

you've figured out how close colorbox, study on parent.window.location , you're off races.

personally, in javascript rather trying work out using default browser behavior.

all best.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -