validation code / function to allow only NUmbers in a text box
Answer Posted / kevin konkle
//Have this be called off the keypress event of your
textbox control.
function numberFormat(fld, e)
{
var key = '';
//This string contains all characters you want to allow
var strCheck = '0123456789';
var whichCode = (window.Event) ? e.which : e.keyCode;
if (whichCode == 13) return true; // Enter
if (whichCode == 8) return true; // Delete
// Get key value from key code
key = String.fromCharCode(whichCode);
// Not a valid key
if (strCheck.indexOf(key) == -1) return false;
//If it is a legal value then add it to the text box
fld.value += key;
return false;
}
Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
program to bring a window to the front
how to create a Draggable element
determine which Element received an Event
communication between main window and new windows
code to detect availability of cookies
how to copy form data between different pages
code to keep a page Out of the browser history
how to Auto Scroll the page
how to pass data between pages using Frames
I have a doubt regarding including tags in a function. I have written a function in javascript in a html page. The function got called by clicking a button, i want to display the results in same html page by placing tags in the function. (this hmtl page is static page) Is this possible? example: