According to the documentation , I should be able to connect to a component change event of the Fuel UX wizard. But for my life I can’t figure out how to do this. I'm still new to jquery and javascript.
Javascript I tried the following
var wizard = $('#MyWizard'); wizard.on('change', '.wizard', function () { alert('OH SNAP!'); }); wizard.wizard().on('change', function () { alert('OH SNAP!'); });
... and several other success options.
I think I messed up the basics somewhere. How do I add the addition of a custom event to the on change event. (as an id, to have only one content area, but in the identifier of the change event, for example, so that the server provides me with the necessary content to fill in each step of the wizard)
source share