I need an even for when the last fieldset becomes visible as I'm using a step-by-step form that toggles the visibility of the various fieldsets. I have tried:
Using the alert as a test to see if the event would fire, but nothing happens.
Code:
$("#msform fieldset:last").on('visible', function() {
alert();
});