Slowly change class
Slowly change class
Hi,
I'm new to jQuery, and I'm trying yet to discover what it offers.
So, I'm stuck with problem of trying to change class of <a> tag, but with slow animation.
So this is my script.
- $(document).ready(function() {
- $('menu').hover(function() {
- $(this).addClass('menu_hover').show('slow');
- });
- });
But this seems to not working..