R
r_honey
Hell everyone, I write javascript only occasionally. However, when I
do and am stuck with a problem, on googling out, I almost always get 2
solutions: one for NN4, and other for IE. However, the code which is
written for iedom always works on FF perfectly. I often find code
like:
var iedom = document.all || document.getElementById
if (iedom) {
cross_scroller = document.getElementById ? document.getElementById
("iescroller") : document.all.iescroller
else if (document.layers) {
ns_scroller = document.nsScroller0.document.nsScroller1
Now, in my knowing, NN was obsolete many years ago.
Now, my target audience is IE & FF users. Should that mean that I
should consider only iedom code??
Can someone point me to a resource listing which browsers are
compatible with each other??
do and am stuck with a problem, on googling out, I almost always get 2
solutions: one for NN4, and other for IE. However, the code which is
written for iedom always works on FF perfectly. I often find code
like:
var iedom = document.all || document.getElementById
if (iedom) {
cross_scroller = document.getElementById ? document.getElementById
("iescroller") : document.all.iescroller
else if (document.layers) {
ns_scroller = document.nsScroller0.document.nsScroller1
Now, in my knowing, NN was obsolete many years ago.
Now, my target audience is IE & FF users. Should that mean that I
should consider only iedom code??
Can someone point me to a resource listing which browsers are
compatible with each other??