views:

62

answers:

3

Hi, when you first land on this site you show a first time div tag appear up top (like a toolbar) which sits offering a link to the FAQ page.

Nice touch! Is this done with jQuery or do you have an example of the code?

Any help appreciated.

Thanks!

+2  A: 

It's just a few simple elements combined. An absolutely positioned div, a JS fade in effect and a close button that sets a cookie (which is checked server side before including that call to the JS function that displays it).

There's nothing complicated about it, and each discrete part is easy enough to find documentation on with Google.

David Dorward
A: 

I would assume it uses a mixture of server-side session management and jQuery. The session management knows if you have already visited (it could also use cookies) and the jQuery makes the "animation" happen (it fade into view).

Topher Fangio
A: 

I believe that is done (or at least can be done) using the jQuery Impromptu plugin.

karim79