View Single Post
07-09-2008, 11:37 AM
#1
G-Sun is offline G-Sun
Status: Member
Join date: Feb 2008
Location: Norway
Expertise:
Software:
 
Posts: 101
iTrader: 0 / 0%
 

G-Sun is on a distinguished road

  Old  Jquery animate (help needed)

Hi!
I'm rather new to js and jQuery.
I'm making a fancy animated menu, but have some trubbel.

My code is:
Code:
	$(document).ready(function(){
	$('#K_meny').hover(function() {
	$('.anm').addClass('anm_start')
			.animate
			({
			clip: "rect(auto,auto,auto,auto)"
			left: "59px"
			}, 1000); 
 		});
	});
..it's the animate part that doesn't work. Errors? Suggestions?
(If I comment out the animate-part, it works..)

Thanks!