Form Submit Question
Posted: Mon Sep 19, 2011 2:53 pm
i have a form i want to submit. In this form i have the following :
<form id="wassim" action="process.php" method="get">
<select name="item">
<option>Paint</option>
<option>Brushes</option>
<option>Erasers</option>
</select>
<input name="quantity" type="text" />
<input type="submit" />
<span id="spanme">hello text</span>
</form>
when i submit the form i get the "quantity"& "item" values. However, i cant get the inner text of the span "spanme". Is there a way i can submit the value of the span with the form.
thanks
<form id="wassim" action="process.php" method="get">
<select name="item">
<option>Paint</option>
<option>Brushes</option>
<option>Erasers</option>
</select>
<input name="quantity" type="text" />
<input type="submit" />
<span id="spanme">hello text</span>
</form>
when i submit the form i get the "quantity"& "item" values. However, i cant get the inner text of the span "spanme". Is there a way i can submit the value of the span with the form.
thanks