Remove '|' special character from a string - Javascript jQuery

Javascript examples for jQuery:String

Description

Remove '|' special character from a string

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials