Jump to content

How to allow only numbers letters and (.,/) in html input


paymentstv

Recommended Posts

Hello all,

 

I have a php file where i have a text input box in html.

I have the following code now that succesfully check if the input is letters or numbers.

However, I want to include . and / in the allowed characters. Can some one please help me to modify the code so that it accepts "." and "/"

 

Thank you.

else if( channelname.search("[^A-Za-z0-9\ ]") >= 0) {
		alert("Only characters and numbers allowed.") ;
		document.getElementById( "channelname" ).focus() ;
		return false ;

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.