Mail non form-tag information
-
So I have a select which is defined in raw html, and does not use the form tag because I need to use onchange with it.
I now need a way to send the value of this in the mail
So if they select 4, then I need to be able to send that in the email
Here is the select.
<div style="display: inline-block;"> <p>Primary</p> <select required id="prim" onchange="showdiv(this.value);"> <option value="0">Not yet started</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> </select> </div>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Mail non form-tag information’ is closed to new replies.