Multi-step Form "next" Button Not Working
I have a basic understanding on Javascript and jQuery. I have a multi-step form here which splits up my form into 3 steps. However the 'next' button doesnt seem to work. I have spe
Solution 1:
Currently I see that you've specified only a single step, for starters place all your bindings in a single $(document).ready
or for short $(function(){});
, so:
$(function() {
$(".previous").click(function(){
// stuff for previous ...
});
$(".next").click(function(){
// stuff for next ...
});
$(".submit").click(function(){
// you get the idea ...
});
});
Here is your fiddle updated (you were missing some resources, I hope I got them right). I hope this helps, good luck :)
Post a Comment for "Multi-step Form "next" Button Not Working"