Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サイドナビゲート/サブナビエリアをクリックすると、ナビゲーションがスライドアップするようにしたい...そのためのコードを以下に示します。しかし、iPadでは機能しません。誰でもこれを手伝ってもらえますか?
$(document).mouseup(function(){ $("#navLeft").slideUp(0); $("#navRight").slideUp(0); });
クリック機能を試してみませんか?
$(document).on('click',function(){ $("#navLeft").slideUp(0); $("#navRight").slideUp(0); });