jqueryにてtoggleの状態判定に悩んだので備忘録です。
$("#hogehoge").toggle(function () {
if ($(this).is(':visible')) {
// 非表示中の処理
hogehoge;
} else {
// 表示中の処理
hogehoge;
}
});
Go to list of users who liked
More than 5 years have passed since last update.
jqueryにてtoggleの状態判定に悩んだので備忘録です。
$("#hogehoge").toggle(function () {
if ($(this).is(':visible')) {
// 非表示中の処理
hogehoge;
} else {
// 表示中の処理
hogehoge;
}
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked