If I pass a number of selectors to jQuery, how can I differentiate the selector of each of those selectors as separate strings? For example:
$('#selector-a, #selector-b, #selector-c').each(function(){
console.log( $(this).selector ); // logs an empty string
});
$(this).attr("id")for that.var j = $('#selector-a, #selector-b, #selector-c');and thenj.selector.