
Untitled
By: a guest on
Mar 28th, 2012 | syntax:
jQuery | size: 0.71 KB | hits: 39 | expires: Never
$(document).ready(function(){
var active = "";
$(".dropdown").click(function(){
var id = $(this).attr("id");
if (active != "")
{
if (active == id)
{
$("#" + active + "-dropdown-contents").slideUp("slow", function(){});
id = "";
}
else
{
$("#" + active + "-dropdown-contents").slideUp("slow", function(){
$("#" + id + "-dropdown-contents").slideDown("slow", function(){});
});
}
}
else
{
$("#" + id + "-dropdown-contents").slideDown("slow", function(){});
}
active = id;
});
$(".header-bottom-contents-close").click(function(){
var id = $(this).attr("id");
$("#" + id + "-dropdown-contents").slideUp("slow", function(){});
});
});