jQuery parent()
$(document).ready(function(){
$("span").parent();
});
jQuery parent()
$(document).ready(function(){
$("span").parent();
});
get parent element using jquery
/*
For accessing parent element details by using reference of children element.
Just Take a look on below example:
*/
<div id="parentDiv">
<p>Child paragraph element</p>
</div>
$(document).ready(function(){
alert($("p").parent().attr("id")); // output: parentDiv
});
/*
I hope it will help you.
Namaste
*/
parent jquery example
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>parent demo</title>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<div><p>Hello</p></div>
<div class="selected"><p>Hello</p></div>
<div class="selected"><p>Hello Again</p></div>
<script>
$( "p" ).parent( ".selected" ).css( "background", "yellow" );
</script>
</body>
</html>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us