How do I make a form submit to an iframe on a different page?
I am working on a real estate website and they are using a 3rd party to display the mls. The acutal listings are on a different server. I want to put a search on their home page, but I display the listings in an iframe on their site. Is there a way make the form submit to the iframe on their listing page? Link to example? so essentially i need the form to open a page, but submit the info to the iframe on that page.
Public Comments
- iframe is a tag that shows the content of another page so it has a src attribute like : <iframe src="anotherpage.php"></iframe> and a form can send the content to that page : <form method="post" action="anotherpage.php"></form> so this will submit the form to anotherpage.php and you have to take care of the parameters you get, if using php then $_POST['paramName']
Powered by Yahoo! Answers