Wrap Inner elements with new element

Description

The following code shows how to wrap Inner elements with new created 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 . j  a  v a  2  s .  c  o m-->
    $("p").wrapInner(document.createElement("b"));
  });
</script>
<style>
div {
  border: 2px green solid;
}
</style>
</head>
<body>
  <p>
    java2s.com <span>span</span>
  </p>

</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities