Pages

Sunday, April 1, 2012

Javascript trim function

For removing whitespace leading and trailing

var trim = comment.replace(/^\s+|\s+$/g, '')

For replace all the whitespaces  use -

/\s/g


No comments: