Wrap with new element
Description
The following code shows how to wrap with border.
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 av a 2 s . c o m-->
$("p").wrapAll("<div></div>");
});
</script>
<style>
div {
border: 2px solid blue;
}
</style>
</head>
<body>
<p>Hello</p>
<p>Hello</p>
<p>Hello</p>
</body>
</html>