0

I'm trying to redirect a page/run some js after an embedded nVite form is submitted on another page. The problem I'm having is there is no native solution through nVite to run some JS after a form submission. I also don't know a way to target any of the HTML inside of the iframe to check for changes. Does anyone know a way to target the HTML inside an iframe and or trigger JS after nVite from submission?

The form I'm trying to redirect can be found on this page after clicking the registration button.

Xcodian Solangi
  • 2,342
  • 5
  • 24
  • 52
Jleibham
  • 480
  • 2
  • 9
  • 26

1 Answers1

1

If you are not the owner of the website you are trying to access, you can't.

This is due to the Cross Domain policy.

If you are the owner, then try using postMessage, as described here:

Cross domain iframe issue

Sam
  • 608
  • 4
  • 11
  • Bummer, I kind of assumed this but my team is at the ropes end on this. I was hoping there was some sort of solution without help from the vendor. We've tried to reach out to the vendor but haven't heard back yet :( – Jleibham Oct 17 '17 at 15:56