twitter-bootstrap-wizard icon indicating copy to clipboard operation
twitter-bootstrap-wizard copied to clipboard

Previous/next should return false on href tags

Open JoshuaNovak919 opened this issue 10 years ago • 1 comments

If you click the next or previous button it actually changes the page, even in the demo on this page:

http://vadimg.com/twitter-bootstrap-wizard-example/examples/basic-progressbar.html

After clicking next or previous you will see the hash tag.

JoshuaNovak919 avatar Nov 18 '14 03:11 JoshuaNovak919

You can get it to work properly if you add:

e.preventDefault();

to

this.next = function(e) {

and

this.previous = function(e) {

JoshuaNovak919 avatar Nov 18 '14 03:11 JoshuaNovak919