i am making a purchase sheet in html ,it contain names of
product(by selecting checkboxes),quantity(textbox) and
price(checbox), by using java script i am restricting the
user to prevent them to enter the wrong data ,so i made the
servlet were i am only able to prevent them to enter the
page in empty field , so my doubt is how do you prevent them
how to enter non numerical data in quantity field
Answers were Sorted based on User's Feedback
Answer / vijay
this below code is implemented to avoid special-char in a text field...do some change's to avoid char....
!(/^[A-zÑñ0-9-\s]*$/i).test(f.value)?f.value = f.value.replace(/[^A-zÑñ0-9-\s]/ig,''):null;
keep mailing...
if u have any doubt k ;)
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / shivkumar
use isNumber() function to check whether entered data is non-
numerical ??
if it is then give an error
| Is This Answer Correct ? | 2 Yes | 1 No |
how to create Expandable and Collapsible Menus
code to positioning of window in certain dimensions
how to prevent an Event from performing its default behavior
code to calculate the number of days between two dates
code to display a Countdown Timer (dynamic)
how to copy form data between different pages
validation code / function to allow only NUmbers in a text box
determine which Element received an Event
how to delay a function call ?
how to Auto Scroll the page
how to Scroll a DIV content
snippet to prevent submission of form when certain/any validations got failed