I am new to development. I want to know that how we can manage the cross browser compatiability problems. for example some times it happens that same code is working with firefox but not with IE. I had an issue that one of my code of downlao
|
|
Whenever anyone says they have "cross browser issues", they almost always mean "it doesn't work in IE". Frequently, the developer uses IE as their reference for how things work which is the worst thing they could do since IE is 13 years behind all other browsers in modern standards and compliance and inept at best. Therefore, always use a modern browser (anything but IE) to initially test your markup. Along with validation of HTML and CSS, this will make your code work everywhere in most cases. Then you know your code is written correctly. As you go along, look in IE to see how it screws everything up but the quirks and bugs of IE are well known, as are the hacks to fix it. Never, ever trust IE to do anything right. Do NOT fall for the fallacy that IE9 will be any savior either. |
|||||||||||
|
|
there are 2 possibilities when it comes to cross-compatibility:
the library will handle cross-compatibility ;) |
|||||||||||
|
|
for IE u can use this little technique..:
it was given out by microsoft...it worked for me! |
||||
|
|
|
Yes, I agree- your question is too broad. If you want to test your code into different version of IE you can download this free software. IETester Most likely if your code works on firefox it will work on chrome also. But not all, mostly. |
|||
|
|