Re: FORM VALIDATION| need help! | Cant add variable
Show us your form that has the "number/area" textbox.
If you want to eliminate those strings, you can use replace() method of String object:
[code:j69atwg8]
document.getElementById('area_number_element').value.replace(/[%&a]/g,'');
[/code:j69atwg8]