| dhteumeuleu forums / English / DHTML Scrollbar Style updt. |
| Author | Message |
| Hovig Devejian Member |
# Posted: 24 Jun 2009 08:50 In Response to a script posted in November 2007 http://www.dhteumeuleu.com/dhtml/scrollbarStyle.html There was a simple bug in the DHTML Scrollbar Tutorial preventing the script to work in Opera. There is a quick fix for it that I thought I'd share: within the m_move function there is: if (cds.fo.sg) cds.fo.scrollTop = cds.fo.sZ + (cds.ym - cds.fo.yZ) / cds.fo.r; cds.fo.scrollTop should not be set in opera (don't ask why) so the simple condition test: if (!(navigator.userAgent.toLowerCase().indexOf('opera') != -1) && cds.fo.sg) cds.fo.scrollTop = cds.fo.sZ + (cds.ym - cds.fo.yZ) / cds.fo.r; does the trick. Enjoy.. |
|
Powered by miniBB forum software © 2001-2009 |