for example:
I want to know if i change anything in this selector then how many places it will effect? How many page are using this selector and which places?
#annualReportInvestorContainer p a {.........}
for example:
I want to know if i change anything in this selector then how many places it will effect? How many page are using this selector and which places?
#annualReportInvestorContainer p a {.........}
I think Firebug and DustMeSelectors can help you there. See their docs for more info.
Easy with jQuery:
$(document).ready(function() {
var selector = '#annualReportInvestorContainer p a';
alert('The selector "' + selector + '" reference to '+ ($(selector).size()) +' element(s)! :O');
});