I want a previously hidden next button to appear after 25 seconds but I can’t figure out how to do so and the code below doesn’t work.
as long as showNextButton is programmed to show the button, it should work. What’s the question?
Well it’s just not working, that’s my problem, i’m very new to this so i don’t really know how to organise scripts
Well without knowing things about what environment is loaded, or what defines the ‘next button’ it’s a little difficult to answer… presumably the site you’re using has a support system… but at a guess, it should be something like
document.getElementById('nextbutton').style.display = "none";
setTimeout(function() { document.getElementById('nextbutton').style.display = "inline"; }, 25000);
1 Like
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.