Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Header pull down Re: Header pull down

#108303
MisterC
Member
#dropdown {
display: none;
}
$('#link').click(function(){
$('#dropdown').html('whatever you want to do');
$('#dropdown').slideDown();
});

Something like that?