Jump to content

quick function question


bind199

Recommended Posts

ok this is an addendum to the first post, i want to validate the text box which takes the value and has to be between 1 and 100 would it be a if statement like if (amt > 100 ll amt <1) alert "incorrect format"? the text box is called "amt"

 

Link to comment
Share on other sites

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;
}

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

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.