Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
191
rated 0 times [  198] [ 7]  / answers: 1 / hits: 95639  / 11 Years ago, wed, may 8, 2013, 12:00:00

I just need to allow a user to enter the following characters in the textinput:



a-zA-Z0-9!@#$%^*_|



<form action=http://www.cknuckles.com/cgi/echo.cgi method=get name=logOn>
User Name:<br />
<input type=text name=userName size=25 /><br />
Password:<br />
<input type=password name=pw size=25 /><br />
<input type=submit value=Log In onClick=validate()/>
</form>


Above is my HTML, and Below is my JavaScript I tried to use to validate it - but it doesnt work - any clues.



<script language=javascript>
document.logOn.onsubmit=validate;

function validate(){

var name=document.logOn.pw.value;
if(!name = [a-zA-Z0-9!@#$%^*_|]){
alert(Your Password Cant Have any thing other than a-zA-Z0-9!@#$%^*_| - Play It Straight!);
return false;
}

return true;
}

</script>


But This isnt working. I can still put chars in like > and < and { etc.



Any Thoughts?


More From » character

 Answers
15

You can change your input text as below:


<input type="text" pattern="[a-zA-Z0-9!@#$%^*_|]{6,25}" />

So the code changes look like below:


    <form action="#" method="get">
User Name:<br />
<input type="text" pattern="[a-zA-Z0-9!@#$%^*_|]{6,25}" /><br />
Password:<br />
<input type="password" /><br />
<input type="submit" value="Log In" />
</form>

This will work without using JavaScript. pattern can be used instead. It is more effective than JavaScript for form validation.


[#78363] Tuesday, May 7, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
jarod

Total Points: 62
Total Questions: 111
Total Answers: 83

Location: Saint Vincent and the Grenadines
Member since Sat, Sep 11, 2021
3 Years ago
;