Wednesday, June 15, 2011

string without special character and space

if(!filename.match(/^[a-zA-Z0-9_.]+$/))
{
alert("Image name should be without special character and space!");
return false;
}
Read More »