Underline certain words using jquery - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:html

Description

Underline certain 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(){//from  w ww  . j  a  va 2  s.  c om
 var $el = $('#plus-shipping');
 $el.html( $el.html().replace(/Shipping/g, '<span style="text-decoration: underline">Shipping</span>') );
    });

      </script> 
 </head> 
 <body> 
  <span id="plus-shipping">+ Shipping this is a test</span>  
 </body>
</html>

Related Tutorials