You are on page 1of 1

/* function to trim white space */

function trimall(str)
{
str = str.replace(/^\s*|\s*$/g,"");
}

You might also like