I'm having trouble getting the jQueryUI explode effect to work properly. I've tested it out on this jsfiddle, but the explosion effect doesn't seem to happen as expected - the element just disappears with no explosion animation.
$('h1, h2').click(function() {
$(this).hide('explode');
});
After reading through the jQueryUI documentation on the explode effect, I'm still unsure of how to correctly implement it.
Could someone point out what might be going wrong here?