mstratman / jQuery-Smart-Wizard

flexible jQuery plug-in that gives wizard like interface
http://mstratman.github.com/jQuery-Smart-Wizard/
304 stars 164 forks source link

Do not show Previous Button #40

Closed ankit7590 closed 11 years ago

ankit7590 commented 11 years ago

I do not want to show the 'Previous' button. Is there any way, I hide the previous button?

mstratman commented 11 years ago

Just choose an appropriate selector, then call the jQuery hide() function on it.

e.g.

$(document).ready(function() {
    $(".buttonPrevious").hide();
});
gchokeen commented 9 years ago

It's worth to add in plugin options!. $(".buttonPrevious").hide(); is not working for me