Does something like this work to run code on the ‘tabshow’ and wizard ‘stepchange’ events?
$('body')<br> .on('tabshow', function(){<br> component.loadevent();<br> })<br> .on('stepchange', function(){<br> component.loadevent();<br> });
Is there a better way to write that?