Wrap selected elements

Description

The following code shows how to wrap with selected elements.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from  w  w w  . java  2 s  .co m-->
    $("p").wrapAll($(".doublediv"));
  });
</script>
<style>
.doublediv {
  color: red;
}
</style>
</head>
<body>
  <p>World</p>
  <p>World</p>
  <div class="doublediv">
    java 2s .com
    <div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities