There are two forms: in one search, in the other limit the output of results.
<form></form> <div id="vivod"></div> <form></form>
How to send the script parameters from both forms when clicking on a submit in one of them?
...">
The second form is not needed, you can bind the inputs outside the first form to the form, specifying its id in the form attribute of the input http://htmlbook.ru/html/input/form
When you click any submit via js, take data from all fields of both forms and send them to the server via ajax.
Source: https://ru.stackoverflow.com/questions/438162/
All Articles