I have a UI page in my application which is taking to much time to load .
In the HTML source , as you can see, I have a series of .click() jquery event handlers in the document.ready() function as below :
$(document).ready(function() {
$("#selectAllCountry").click( function() {
$("#" + $(this).attr('rel') + " INPUT[type='checkbox']").attr('checked', true);
return false;
});
... and many more...
Does it affect my page's performance ? Does moving this .click handlers in the HTML body will help imporve it?
One more thing , I am using iframe to load another page in the same domain . But , even if I remove the iframe tag , the performance improvement to is not much . I know , this iframe thing is a major bottleneck in the performance of my application and I will eventually remove it, but there is still something else I need to do for this page . what that particular thing might be?
My page is slow slow in performance , even ,y chrome got hanged when I tried to get the source in order to reproduce the scenarion in jsbin.:(