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? Link to comment https://forums.phpfreaks.com/topic/9124-help-changing-a-div-to-an-input-box/ 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. Link to comment https://forums.phpfreaks.com/topic/9124-help-changing-a-div-to-an-input-box/#findComment-33549 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] Link to comment https://forums.phpfreaks.com/topic/9124-help-changing-a-div-to-an-input-box/#findComment-33604 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.