I've implemented a toggle
event, but it doesn't work correctly.
Here my testing site(view in browser 550px width):
http://devel.hoevermann-gruppe.de/
If you click on the search glass icon, you'll see the bug.
Here my Code:
jQuery("#search_icon").click(function(){
$('.search_mobil').slideToggle();
});
Can I make this better? Maybe with slideDown
and slideUp
?
Does anyone have any ideas?