jquery get element id
$(this).attr('id')
jquery get id
var myId = $("#test").prop("id");
jquery get element by id
<script>
$(document).ready(function(){
$("#myBtn").click(function(){
var elmId = $("#test").attr("id");
alert(elmId);
});
});
</script>
<body>
<div id="testDiv">Data of the Div</div>
<br>
<button type="button" id="myBtn">Show Div ID</button>
</body>
jquery find
$( "li.item-ii" ).find( "li" ).css( "background-color", "red" );
how to target an element inside of a $(this) jquery
$( this ).find( 'li.target' ).css("border", "3px double red");
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