Jump to content

calculate on change


jwk811

Recommended Posts

im going to have a select box and when someone choses a different number i want right next to it but out of the box to calculate the total depending on what they chose.. could someone give me a brief insruction on how i could go about doing this? Thank you very much for any help i can get.. im not very good with javascript
Link to comment
https://forums.phpfreaks.com/topic/28808-calculate-on-change/
Share on other sites

You need an onchange for your select box and a span or div beside it where the results will appear
<span id='myResults'></span><select onChange='recalc(this);'>...

and in the head portion of your doc add this function:
function recalc(selObj) {
  var myVal = selObj.options[selObj.selectedIndex].value;
  document.getElementById('myResults').innerHTML = myVal * 1.5;
  //whatever you need to calculate here
}
Link to comment
https://forums.phpfreaks.com/topic/28808-calculate-on-change/#findComment-132393
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.