jquery.idle icon indicating copy to clipboard operation
jquery.idle copied to clipboard

A dead simple jQuery plugin that executes a callback function if the user is idle.

Results 10 jquery.idle issues
Sort by recently updated
recently updated
newest added

It seems like the `startAtIdle` option is not working See https://jsfiddle.net/jvddrift/ktso2h5p/2/ I'm using the example from the Wiki ``` $(document).idle({ onIdle: function(){ alert('It\'s been a long time since you don\'t...

On edge chromium multi tabs. The onIdle: function does not fire up if the tab is not active event the idle is up. It will trigger as soon at the...

I've implemented timed out logouts using jquery.idle. I have my idle timeout set to 20 minutes, but for some reason it occasionally triggers after 2 or 3 minutes. Really just...

Hello i can kick out the user when i change the tab but when i close is and open it back the user wouldnt be kicked out. Can anyone help...

I am using vanilla.idle.js After I have started the 'idle', on some event I want to stop the tracking. I tried registering the event and then dispatched it but it...

Hi, I know that is not possibile to detect activity on cross-origin iframe, but what about same-origin iframe? I need to detect activity while scrolling a pdf opened in a...

Hello, jquery.idle has been working great for me, except for one case. I have a `` element with a scrollbar (`overflow:auto`) and I use jquery.idle in Firefox as such: ```...

enhancement

Hi I am using this idle timeout plugin. I am facing a problem that is , I am using some other third party plugins to render a network of devices....

In ipad safari when the web application is minimized by pressing the center home button and if the application is set idle and the device is locked which then goes...

I have used this plugin : $(document).idle({ onIdle: function(){ closeSessions(); $(location).attr('href', "logout.jsp" ); }, events: 'mousemove keydown mousedown touchstart click', idle: timeout }); Now in chrome if I login to...