tags:

views:

85

answers:

1

This is possibly a really silly question but I've stared at this code way too long for it to make sense!

I'm having problems with a flicker of the screen in firefox; It is related a filtering script...

I have a website that is a one page vertical scroll; with different anchors to define sections and a smooth scroll script to make it pretty...

See the example here: http://tiny.cc/7g5mn

I've tried everything... Please help me, I'm begging you, my eyes hurt!

+1  A: 

Here's a guess.

In your scroll.js file, this event handler:

$('a[href*=#]').click(function()...

is being applied to those 'sub-navigation' elements under the Portfoliio section, so when you click on one, a scroll animation is taking place on the body, which is interfering with your attempt to manually scroll.

If you exempt those links from getting that event handler, I'm guessing it will clear up.

patrick dw
Thanks so much, of course, that was the problem. Cheers :)
superted86