Hi all,
I use SmoothScroll in a site I'm developing. This site has a version
of a page in which information is presented in a big list with a
navigation on top of it and a version the information is presented in
'slides' with a tabbed navigation on top.
The SmoothScroll is used through the whole site as well for anchors,
so it is include in every page.
I created the tab/slide navigation with almost the same html as the
big list. (so the tabs identify their slides on the anchors). This has
a couple of reasons (serverside setup, client with no js, etc.)
In the click-event I cancel the SmoothScroll i have setup.
---
/* Initialize SmootScroll */
var scrolling = new SmoothScroll({ duration:600 }, window);
---
tablink.addEvent ('click', function(e) {
// Stop SmoothScroll
scrolling.cancel();
});
---
This works perfectly in Firefox (3), but not in Internet Explorer (7,
probably also 6)
Do any of you have a solution or work-around to fix this?
Tha!