I have a great effect when you hover over a specific item and it scales more. I made it simple:
$('#element_to_scale').live('mouseenter', function() {
$(this).stop().animate({zoom: 2});
}).live('mouseleave', function() {
$(this).stop().animate({zoom: 1});
});
The problem is that this does not work on firefox :( Now I read that firefox is the only browser that does not support css scaling? It seems very strange ... so what's the best approach to animating the scaling mechanism using jQuery above?
source
share