CSS メディア クエリを介して CSS 値が変更された後、サイズ変更機能が起動しないようにしようとしています。これは機能しません...「トグルがあります」を一度だけ表示したい。どのように私はそれを殺すのですか?
$(window).bind('resize', function(event) {
if ($('#toggle').css('display') == 'none')
{
console.log("there's no toggle!");
}
else {
console.log("there IS a toggle!");
return false; // trying to stop the function
}
});