How to trigger my pop up if the users mouse is idle for 1minute???
Hi Guys,
I'm really new to jquery but trying to learn.
I have successfully managed to get a pop up dic with a faded black background to trigger when a link is clicked but i really need to trigger the pop up if the users mouse is idle for 1 minute.
I found this
Click Here which looks like the timer idle script but i cannot figure out how to implement it with my script.
If anyone knows how please can you help me out...
heres the .js file i have already
- var $j = jQuery.noConflict();
- $j(document).ready(function() {
- //When you click on a link with class of poplight and the href starts with a #
- $j('a.poplight[href^=#]').click(function() {
- var popID = $j(this).attr('rel'); //Get Popup Name
- var popURL = $j(this).attr('href'); //Get Popup href to define size
- //Pull Query & Variables from href URL
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- //Fade in the Popup and add close button
- $j('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
- //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
- var popMargTop = ($j('#' + popID).height() + 20) / 2;
- var popMargLeft = ($j('#' + popID).width() + 20) / 2;
- //Apply Margin to Popup
- $j('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- //Fade in Background
- $j('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
- $j('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
- return false;
- });
- //Close Popups and Fade Layer
- $j('a.closebtn, #fade, a.callback').live('click', function() { //When clicking on the close or fade layer...
- $j('#fade , .popup_block').fadeOut(function() {
- $j('#fade').remove(); //fade them both out
- });
- return false;
- });
- });