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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.