Fade addclass
Fade addclass
Im trying to fade/or animate addclass but nothing happens, when i add the second prameter (time) it gets stuck. Any suggestions?
- $('.foodlab, .skafferiet').hover(
- function(){ $('body').stop(true).addClass('foodlab-color') },
- function(){ $('body').stop(true).removeClass('foodlab-color') }
- )
- $('.foodlab, .skafferiet').hover(
- function(){ $('body').stop(true).addClass('foodlab-color', 500) },
- function(){ $('body').stop(true).removeClass('foodlab-color', 500) }
- )