jquery how to get an id code example
Example 1: jquery get id value
var myId = $(this).attr('id');
alert( myId );
Example 2: get the id of a div in jquery
var rid = $(this).attr('id'); //for dynamically created elements
var myId = $(this).attr('id');
alert( myId );
var rid = $(this).attr('id'); //for dynamically created elements