Skip to content
Advertisement

if/else with setInterval auto-refreshing and on click refreshing event jquery?

Struggling to get this to work properly…Making an if/else statement with setInterval that if class is clicked, content refreshes, else content auto refreshes after a specific time period. This is what I have for just auto refreshing atm (which works perfectly):

JavaScript

What I’ve tried to get a “click” function added, but doesn’t do anything…:

JavaScript

Where am I going wrong? Or am I way off-base here…? Any guidance/help would be greatly appreciated!

Advertisement

Answer

You don’t need a conditional statement, but rather a variable to store the set interval in so that it can be cleared and restarted on manual refresh via a calling function:

JavaScript
JavaScript

See it in action: https://codepen.io/PavlosKaralis/pen/rNxzZjj?editors=1111

Edit: Applied to your code I think it would be:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement