element id in jquery code example
Example 1: jquery get element id
$(this).attr('id')
Example 2: store id of an element jquery
$(". only_this_class"). click(function() { var clickedId= $(this). attr("id"); alert(clickedId); });
$(this).attr('id')
$(". only_this_class"). click(function() { var clickedId= $(this). attr("id"); alert(clickedId); });