library file?????
;;;i don't want them to enter a zerro (0)
Two options come to mind
1..Make it a select box including only the options you want then to choose
2..When you validate your form (do you validate your form using
JS?) throw in this inside your validation function:
if (document.form.qty == 0)
{
alert("zeros not allowed, enter another number.");
document.form.qty.focus();
document.form.qty.select();
return false;
}
Wind is your friend
Matt