toggle - переключает режим отображения элементов
Пример работы скрипта http://flapps.ru/example/jquery/toggle.html
Код: Выделить всё
<html><head><title>toggle jquery</title><script src="js/jquery-1.5.1.min.js" type="text/javascript"></script><script type="text/javascript">$(function (){ $('#btn').click(function() { // показываем или скрываем элемент с id="block" $('#block').toggle(); });});</script></head><body><input type="button" id="btn" value="Скрыть/Показать" /><div id="block">Скрывать и показывать будем этот блок</div><br /><a href="http://flapps.ru">http://flapps.ru</a></body></html>