Javascript examples for jQuery:String
Remove '|' special character from a string
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(window).load(function(){//from w w w . j av a 2 s. co m var txt= $('.inner').html(); var newTxt = $.trim(txt.split('|').join('')); console.log(newTxt) }); </script> </head> <body> <div class="inner"> | ABCD || </div> </body> </html>