- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
// NB: placing identical functions on both toggle events is required for proper functionality!
$("#manageButton").toggle(
function () {
$(this).toggleClass('current');
$("#adminBar").slideToggle(50);
$("#manageButtonIcon").attr("src", "/includes/images/icons/collapse.gif");
},
function () {
$(this).toggleClass('current');
$("#adminBar").slideToggle(50);
$("#manageButtonIcon").attr("src", "/includes/images/icons/expand.gif");
}
);
Комментарии (0) RSS
Добавить комментарий