Split a sentence/string in to words using jQuery - Javascript jQuery

Javascript examples for jQuery:String

Description

Split a sentence/string in to words using jQuery

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://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/* w  w w . j a va 2 s . c  o m*/
$('h1').each(
function() {
    var that = $(this),
        newText = that.text().replace(/\W/g, '<br />');
    that.html(newText);
});
    });

      </script> 
 </head> 
 <body> 
  <h1>This is the heading </h1>  
 </body>
</html>

Related Tutorials