Wrap with DOM div element

Description

The following code shows how to wrap with div element.

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() {<!--  ww w  . java  2  s  .c  om-->
    $("p").wrapAll(document.createElement("div"));
  });
</script>
<style>
div {
  border: 2px solid blue;
}
</style>
</head>
<body>
  <p>Hello</p>
  <p>Hello</p>
  <p>java2s.com</p>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities