Multiple class selector to wrap div around - Javascript jQuery

Javascript examples for jQuery:Tag Traversing

Description

Multiple class selector to wrap div around

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.8.3.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*  w w w.  j  ava 2  s  . co m*/
$('div.bigfont-m.capsletter,div.my.text-overhide').wrapAll('<div></div>');
    });

      </script> 
 </head> 
 <body> 
  <div class="bigfont-m capsletter">
    Hello 
  </div> 
  <div class="my text-overhide">
    Hi 
  </div>  
 </body>
</html>

Related Tutorials