Wednesday, September 10, 2014

Way to stop page load and rendering using javascript

window.stop(); //works in all browsers but IE    
if (IE) {document.execCommand("Stop");}; //works in IE, 

No comments:

Post a Comment