I'm aware that I'm not the first person asking this question, but I looked at other topics and I was unable to find answer.
http://jsfiddle.net/rsadwick/zwWHY/
My code is working in JSFiddle but not in Chrome or Firefox. The missing part is the flipping; I see the page with the card (back side in Firefox and front side in Chrome) but I cannot flip it the way I do it in JSFiddle. Any ideas?
$('.flip').click(function(){
$(this).find('.card').addClass('flipped').mouseleave(function(){
$(this).removeClass('flipped');
});
return false;
});