What is the difference between Window.load and document.readyState
- by prakash
Hi All,
I have one question , In my ASP.NET MVC web application i have to do certain validation once page and all controls got loaded.
In javascript i was using belwow line of code for calling a method.
window.load = JavascriptFunctionName ;
Some one from my team asked me not used above line of code
Instead use JQuery to do the same
…