javascript - Collecting different HTML Input Elements from different Html Page Location -
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
Post a Comment