Answers for "show id of specific id in jquery"

2

get the id of a div in jquery

var rid = $(this).attr('id');	//for dynamically created elements
Posted by: Guest on June-26-2020
0

how can ic get the id of div jq

$(document).ready(function() {
  console.log($('#test').attr('id'));
});
Posted by: Guest on December-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language