Remove certain tags and the html between them - Jquery - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:remove

Description

Remove certain tags and the html between them - 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 w  w .j  av  a 2  s .c  o m
var t = jQuery('<div>this is a <span>test</span> and some more</div>');
jQuery(t).find('span').remove();
jQuery('.test').append(t);
    });

      </script> 
 </head> 
 <body> 
  <div class="test"></div>  
 </body>
</html>

Related Tutorials