skip to Main Content

I have two Html pages.

  1. Merchant Form
  2. 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.

  1. The User will fill all the required fields on the merchant Form and will click on the submit button.
  2. After clicking on the submit button the Payment form should open as a modal popup form.

Could someone help me with this?

2

Answers


  1. use
    <iframe></iframe>

    inside this this tag you can embed html into another html document.

    Login or Signup to reply.
  2. try to use iframe to embed Payment Form page from server B.

    <iframe src="https://www.google.com"></iframe>
    

    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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search