fairly new at jQuery having trouble working out how to get jQuery transit working on hover.
$(".rotate").hover(function(){
$(this).transition({
perspective: '100px',
rotateY: '180deg'
});
});
This returns "Uncaught TypeError: Property '$' of object [object Object] is not a function", I've been messing with this for a while but seem to be going in circles.
If anyone can point me in the right direction I'd greatly appreciate it.
Thanks Frank