Browse by Tags

All Tags » JavaScript ReplaceAll (RSS)
While I was trying to strip out all space from user input using JavaScript, First I tried with using simple replace function like var strDest = strSrc.replace(" ",""). But, I see the result that it only replaces the first occurance...