I want to create a bootstrap flip card by using CSS3 transform. I did started from this working and basic example
However I wanted to modify it to have a fixed heigh
I think that it is much simpler using directly the CSS class selector
$('.flipControl').on('click', function(){ $(this).closest('.card').toggleClass('flipped'); });
demo