Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-04-2011, 02:56 PM   PM User | #1
SlyOne
Regular Coder

 
Join Date: Feb 2009
Posts: 101
Thanks: 7
Thanked 0 Times in 0 Posts
SlyOne is an unknown quantity at this point
Is there a way to display a pop-up after a set time?

Hi all,

I'm looking to implement a small popup on my site, but it'll only show after a certain set time & then automatically fade after a set time.

Is there a way to achieve this? Looking for a javascript or jquery solution (primarily looking to solve the timer part).

thanks
SlyOne is offline   Reply With Quote
Old 05-04-2011, 03:16 PM   PM User | #2
devnull69
Senior Coder

 
Join Date: Dec 2010
Posts: 2,245
Thanks: 10
Thanked 531 Times in 525 Posts
devnull69 will become famous soon enough
Do you have code for your popup already (like a DIV with some styling)?

Let's assume you have a DIV with ID "popup" and style="display: none;". Then you need two functions. The following code uses jQuery
Code:
var certainTimeInSec = 5;

function showPopup() {
   $('#popup').fadeIn(1000);
   window.setTimeout(hidePopup, certainTimeInSec * 1000);
}

function hidePopup() {
   $('#popup').fadeOut(1000);
}

$(function() {
   window.setTimeout(showPopup, certainTimeInSec * 1000);
});
devnull69 is offline   Reply With Quote
Users who have thanked devnull69 for this post:
SlyOne (05-04-2011)
Old 05-04-2011, 03:29 PM   PM User | #3
SlyOne
Regular Coder

 
Join Date: Feb 2009
Posts: 101
Thanks: 7
Thanked 0 Times in 0 Posts
SlyOne is an unknown quantity at this point
hi Devnull,

no, i don't have the styling yet, that won't be a problem. it was more a case if there were a simple light weight solution without too much development resource... and there is, thanks to you!

i'll give your code a whirl, looks like it should do the trick.


thanks again
SlyOne is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 07:40 AM.


Advertisement
Log in to turn off these ads.