jQuery wrapInner()
0 1274
- This jQuery method is used to wrap the any given element or elements around the content of every selected HTML elements.
Related Topics:
jQuery innerHeight
jQuery outerHeight
jQuery wrapInner
Syntax:
$(selector).wrapInner(wrapping_element,function(index));
Parameter Description:
- wrapping_element: This parameter is used to represents what HTML element or elements to wrap around the content of each selected HTML element. It is mandatory and has three possible values:
- function(index): This represents a function which used to returns the wrapping element or elements.
3 DOM elements
1 index: Returns the index position of the element in the set.
Example:
In this example we will wrap a <h3> around the content of each <div> element.
<html>
<head>
<title> jQuery Example </title>
<script type = "text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
<style>
h3{
background:pink;
padding:10px;
margin:10px;
font-size:20px;
}
button{
background:green;
padding:10px;
color:white;
border:1px solid green;
}
</style>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").wrapInner("<h3></h3>");
});
});
</script>
</head>
<body>
<h2> jQuery wrapInner() method Example </h2>
<div> This is div 1 </div>
<div> This is div 2 </div>
<button> Click me! </button>
</body>
</html>
Output:
When you click the button,
Share:
Comments
Waiting for your comments