RSS Forums RSS
Please support our HTML and CSS advertiser: Lunarpages Web Hosting

Validate textboxes

Join Date: Aug 2005
Posts: 26
Reputation: aish is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 0
aish's Avatar
aish aish is offline Offline
Light Poster

Validate textboxes

  #1  
Sep 10th, 2005
useing this code I avoid to paste invalid chracters to textboxes.

function PasteAlphaNumeric(objEvent)
{
var strPasteData = window.clipboardData.getData("Text");
var objInput = objEvent.srcElement;
if (strPasteData.search("[^A-Za-z0-9]")!=-1) {
alert("The character you attempted to paste is not allowed for this field.");
objInput.focus();
return false;
}
}

I want to allow to paste white space characters (\s) and[A-Za-z0-9] to the textbox, how can I do this.
AddThis Social Bookmark Button
Reply With Quote  
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 8:24 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC