If I have in the page unnecessary ids on elements, like the HTML Helper does in ASP.Net-MVC. Does it reduce the performace of my i
id
HTML Helper
ASP.Net-MVC
Selecting an id is extremely as fast, as jQuery backs up to the native
document.getElementById
function. Nevertheless, you can cache your selectors if you use them frequently (save them in a variable).