brown2005 Posted May 5, 2006 Share Posted May 5, 2006 <html><head><title>testing,,</title><style></style></head><body><script>function ShowPrices(node){var prices=node.value;document.getElementById('price').innerHTML=prices;document.getElementById('price').style.visibility="visible";}function Hideprice(){document.getElementById('price').style.visibility="hidden";}</script><form name="test">Please, select an option:<input type="radio" name="pricing" value="£5.00" onclick="ShowPrices(this);">price A<input type="radio" name="pricing" value="£10.00" onclick="ShowPrices(this);">price B<div id="price" ></div><br><input type="submit" name="Request" value="Submit"><br><br><input type="reset" name="Clear" value="Clear form" onclick="Hideprice()"></form></body></html>hi,i have the above code which works fine... but what i want to do is change the div tag into an input box, so i can post it to the next page...any ideas please? Quote Link to comment Share on other sites More sharing options...
Ninjakreborn Posted May 5, 2006 Share Posted May 5, 2006 That's not possible, just set a textarea instead. Quote Link to comment Share on other sites More sharing options...
zq29 Posted May 5, 2006 Share Posted May 5, 2006 Like this?[code]<script type="text/javascript">function ShowPrices(node) { var prices=node.value; document.getElementById('price').value=prices; document.getElementById('price').style.visibility="visible";}function Hideprice() { document.getElementById('price').style.visibility="hidden";}</script><form name="test"> Please, select an option: <input type="radio" name="pricing" value="£5.00" onclick="ShowPrices(this);">price A <input type="radio" name="pricing" value="£10.00" onclick="ShowPrices(this);">price B <br/><input type="text" id="price" value="£0.00"/> <br> <input type="submit" name="Request" value="Submit"> <br><br> <input type="reset" name="Clear" value="Clear form" onclick="Hideprice()"></form>[/code] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.