Wednesday, March 24, 2010

శ్రీరామ నవమి శుభాకాంక్షలు

శ్రీరామ నవమి శుభాకాంక్షలు..........

Spare a Second to Help

Click on the below link & help the people who are in need......

Just click here

Validation for spaces in a textbox

function removeBlanks(s){
s = s.replace(/(^\s*)|(\s*$)/gi,"");
s = s.replace(/[ ]{2,}/gi," ");
s = s.replace(/\n /,"\n");
return s;
}

The function can be used to remove the spaces & validate a textbox.