javascript - Collecting different HTML Input Elements from different Html Page Location -


enter image description here

suppose have page this, left part has form has 2 input element, can't put right part element inside left form tag because of page positioning impossible.

how can submit value of left part , right part after user click submit while forced separated ?

any idea, code or can me ...

thanx in advance

for accessibility reasons both input areas should belong same form. not using javascript, , users collected data nonsensical.

what can wrap both of columns within form rather 1 section within 1 column. assuming existing markup looks this:

<div>     <form>         <input />         <textarea></textarea>         <input />     </form> </div> <div>     <input /> </div> 

simply change this:

<form>     <div>         <input />         <textarea></textarea>         <input />     </div>     <div>         <input />     </div> </form> 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -