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