JQuery to Trim leading white space only - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:text

Description

JQuery to Trim leading white space only

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.7.1.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*from  w w  w  .  j a va2 s .  com*/
var pane = $('span');
console.log('String before="'+pane.text()+'"');
pane.text(pane.text().replace(/^\s/, ''));
console.log('String after="'+pane.text()+'"');
    });

      </script> 
 </head> 
 <body> 
  <span> My Heading</span>  
 </body>
</html>

Related Tutorials