|
-
Oct 12th, 2000, 01:47 PM
#1
Thread Starter
Addicted Member
I have this so far (top half being "IF" it's IE)
<% if instr(ucase(Request.ServerVariables("HTTP_USER_AGENT")), "MSIE") <> 0 then %>
if (document.all(tree[j][2]).length > 1)
{
for (i=0; i<document.all(tree[j][2]).length; i++)
document.all(tree[j][2],i).checked = status;
}
else
{
document.all(tree[j][2]).checked = status;
}
<% else %>
if (document.layers(tree[j][2]).length > 1)
{
for (i=0; i<document.layers(tree[j][2]).length; i++)
document.layers(tree[j][2],i).checked = status;
}
else
{
document.layers(tree[j][2]).checked = status;
}
<% end if %>
so far I've tried .forms[index], .forms, .layers, and so forth, but nothing works, IE works perfectly.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|