How can I get a CSS Animation to play with a JavaScript onClick? I currently have:
.classname { -webkit-animation-name: cssAnimation; -webkit-animation-d
You can do that by using following code
$('#button_id').on('click', function(){ $('#element_want_to_target').addClass('.animation_class');});