Daniel Hoelbling-Inzko talks about programming
I just stumbled upon a little issue while using jQuery.Stepy wizard plugin: There are callbacks for navigating, but there is simply no callback that gets fired when the current step is actually displayed. As it happens there are a number of things you may want to do once a wizard step is shown like start animations or maybe initialize something. (And next/back get fired before validation happens so they don't actually work in case validation fails)
Thank god JavaScript is almost by definition open-source so I fixed this with the following pull request.
The select callback works just like the back/next callbacks:
$('#wizard').stepy({ select: function (index) { //your code goes here //index is 1 based - not zero based } });