View Full Version : Mac IE Questions
ecnarongi
02-06-2003, 10:24 PM
How do I get IE for the Mac to honor innerhtml or layers? Is this possible? All help is apperciated.
brothercake
02-06-2003, 11:01 PM
Yes it's supported. If you're having a specific problem, please post the problematic code.
Skyzyx
02-07-2003, 01:29 AM
Layers as in <LAYER>, no. Layers as in <DIV>, yes. InnerHTML works in IE5+/Mac, not in 4.5 or earlier.
brothercake
02-07-2003, 02:03 AM
Originally posted by Skyzyx
not in 4.5 or earlier.
mac/ie4.01 and upwards supports innerHTML - i've used it.
ecnarongi
02-07-2003, 04:32 AM
my problem is that when I write to the innerhtml the table rows are on top of each other. I get no structure.
if (document.all){
dynamic3.innerHTML='<table cellspacing="0" cellpadding="0" border="0"><tr><td>This is the Top</td></tr><tr><td>This is the middle</td></tr><tr><td>This is the bottom</td></tr></table>'
}
now this yeilds all the type on top of each other on one line. Can you help me. Thanks, all help is appreciated.
Catman
02-07-2003, 02:28 PM
Try this:
if (document.all){
dynamic3.innerHTML='<table cellspacing="0" cellpadding="0" border="0"><tr><td>This is the Top<\/td><\/tr><tr><td>This is the middle<\/td><\/tr><tr><td>This is the bottom<\/td><\/tr><\/table>'
}
ecnarongi
02-10-2003, 02:44 PM
Thanks Catman,
I tried this but it didn't work. Do you have any other suggestions?
brothercake
02-10-2003, 03:11 PM
I had that problem once ... and I never found a real solution; in the end I had to absolutely positioned each row.
ecnarongi
02-10-2003, 04:36 PM
in 5.0 it doesn't work but in 5.1 it seems to layout fine. I might still have to absolute position all of the rows in the table. I will try this solutions. thanks
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.