window onscroll change menu link style

Apocalypseser

New Member
I am trying to use the window scroll function so that a menu link will change its style to the relevant section the user has scrolled to.I have it to alert the user once they scroll to the portfolio section. But how about the style of a link?Code is a little out of my league:\[code\]$(function(){ $(window).scroll(function(){ var aPortfolio = $('.portfoliowrapper').height(); if($(this).scrollTop()>=aPortfolio){ alert('portfolio just passed.'); } });});\[/code\]
 
Top