I have two Html pages.
- Merchant Form
- Payment Form
The merchant form and the Payment Form are on 2 different servers.Merchant form is on server A and Payment Form is on server B.
Scenario I want.
- The User will fill all the required fields on the merchant Form and will click on the submit button.
- After clicking on the submit button the Payment form should open as a modal popup form.
Could someone help me with this?
2
Answers
use
<iframe></iframe>
inside this this tag you can embed html into another html document.
try to use iframe to embed Payment Form page from server B.
In Merchant Form :
after fill all the required fields on the merchant Form and will click on the submit button just call the
window.open()
page which embed page from server B as pop up window.