Javascript examples for jQuery:Text
Removing special characters from the text using jquery
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.js"></script> <script type="text/javascript"> $(window).load(function(){/*from w ww . j a va 2 s .com*/ var string = "aaaa$e o$f ! some#% st%ing."; $('body').html(string.replace(/[^a-z0-9\s]/gi, '').replace(/[_\s]/g, ' ')); }); </script> </head> <body> </body> </html>