I use the js-Plugin fullpage on my webpage and have a submit-button in the second section which should start a js-based demo-function. Unfortunately pressing the button just let's me jump back to section 1 without starting the function (or starting and immediately stopping it again, I'm not sure). This is the code:
HTML
<input type="submit" value="Start" id="btn1"/>
js
$('#btn1').click(function(){
$.WizDemo();
});
function WizDemo() {
some code;
};