Is there a way to run my own javascript after all JS files have loaded and ASP.NET javascript has finished initialized and loaded. I am currently using jQuery to run javascript after page load and that does not guarantee it will load after ASP.NET javascript. Thanks
Share
have you looked at the
.ready()
documented here
http://api.jquery.com/ready/
it should run once the Dom is ready to use.
PS what do you mean by ASP.NET JavaScript, any JS generated from ASP.NET will be done before the page is returned to the client. the second the page is returned to the user, all the JS should be generated, or linked too (if in an external js file)
EDIT:
did you mean in your JS they run on doc ready, and you would like to run yours after this?
could you not make a script, which calls all the functions in order? like this