I am using jquery with asp .net. I have some javascript code in some custom controls that I want to execute when the documents loads.
To execute the code I use this snippet:
$(document).ready(function () {
/*do work here*/
});
My question is that if I set that handler in the control, won't it override the handler for document.ready in the page that contains the control?