I am looking to create a system which on signup will create a subdomain on my website for the users account area.
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
Cisco Certified Network Associate Exam,640-802 CCNA All Answers ~100/100. Daily update
The following code works with IE9 but not with IE8
HTMLInstance.attachEvent("onclick" , function() { } ); // work with IE8
HTMLInstance.attachEvent("onload" , function() { } ); // does not work with IE8 but works with IE9
How can I fix the problem with onlaod event ?
There is no onload event in IE 8 so you should use window.onload or window.body.onload
ReplyDeletewindow.onload = function(){
}