Forums

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

Home Forums JavaScript On body click, hide search Re: On body click, hide search

#132583
chrisburton
Participant

@pixelgrid

Couldn’t I do something like this:

$(‘.find’).click(function(event) {
event.preventDefault();
if ($.browser.msie) {
$(‘.search’).slideDown(‘slow’);
}
else {
$(‘.search’).slideDown(‘slow’).focus();
}
});

It doesn’t seem to work but you get what I mean.