Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will Internet Explorer 8 solve many of the browser incompatibility issues?

IE 6 and 7 didn't follow many of the w3 standards, like event handling, making it necessary to write code for the standards compliant browsers, and then write MORE code for Internet Explorer. Will IE 8 take us out of this dark age and stabilize web-development? Will it be easier to write one set of code that all browsers will display the same (ish) way?

like image 401
Gordon Gustafson Avatar asked Mar 01 '23 19:03

Gordon Gustafson


2 Answers

Every new release of IE gets us a little closer, but it's more about abandonment of old browsers than releasing of new ones. IE35 might be available, but if IE6 still has a 20% market share, we haven't actually progressed. Campaigns like this one which help educate and upgrade, are what will ultimately solve the problem.

like image 120
Rex M Avatar answered Apr 06 '23 05:04

Rex M


IE8 fixes a lot of things - but it is still not up to par.

  • No W3C Event Listener/Handlers
  • Select lists/Table elements still suffering from buggy styling/manipulation

However with the popularity of libraries like jQuery etc. many of the IE bugs can be worked around.

like image 31
scunliffe Avatar answered Apr 06 '23 03:04

scunliffe