-
javascript cross-browser
I have the following code that works fine in explorer. it brightens pics when
the mouse is placed over. in netscape the pics come up bright straight away.
any ideas?
Thanks
function high(which2)
{
theobject=which2
highlighting=setInterval("highlightit(theobject)",20)
}
function low(which2)
{
clearInterval(highlighting)
which2.filters.alpha.opacity=50
}
function highlightit(cur2)
{
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}
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
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|