views:

128

answers:

3

You know, the menu that pops up when you get to the site and you can click the 'x' to the right to remove it. What technology is this (I assume AJAX) and what terms do I need to search for to use this?

+1  A: 

Look into jQuery.

As a side note, that box is actually static if you don't have scripts enabled, so it is not AJAX, just DOM scripting.

John Gietzen
A: 

I know it was implemented via jQuery, but I'm not sure which plugin they used or how it's configured.

Joel Coehoorn
do you know the technique or definition so I can google some tutorials? 'Sliding menu' isn't it.
HollerTrain
+2  A: 
Daok
This works perfectly thank you Daok! However since I have it in my header.php file once the user clicks it away it is gone, however when they view another page in the site it comes back. Any ideas on the proper way to remove this?
HollerTrain
You need to make an Ajax call in the click function that will call a page on your server that will save somewhere(database,xml, file or cookie) that the user have closed the top menu. When you generate the header.php, you will need to check where you saved the state of the click and if an entry is wrote than you do not generate the code to display the top menu.
Daok