Hi guys, I have such code:
$('div.new_menu').hover(function(){
$(this).stop(false, true).animate({width: $(this).width() + 25}, 450);
},function(){
$(this).stop(false, true).animate({width: $(this).width() - 25}, 450);
});
It works perfect in all browsers except IE. Could you help me with rewriting it to JavaScript?