Jump to content

quick function question


bind199

Recommended Posts

function validateAmount (value) {

  if (isNaN(value) || value!=Math.round(value)) {
    alert('The value must be an integer.');
    return false;

  } else if (value<1 || value >100) {
    alert('The value must be between 1 and 100.');
    return false;

  return true;
}

thanks for all ur help. One last thing i promise. I am still alittle confused on what to put in the "value" space. For example the Text box named IRate would i put

 

function validateAmount (IRate.value)    ? or something similar.

 

thanks for all the help. Regards

No, you would call tyhe function like this:

 

validateAmount (IRate.value)

 

Assuming "IRate" is an object reference for the field. You would need to create a trigger such as onblur, onchange, onsubmit, etc. And also have proper alerts or functions to handle if the response is negative. You didn't post any code so I can't offer any suggestions on how to best implement this - I jsut created a function that will return true/false based upon the parameters you asked.

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.