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.
$(".subTab").css("left", $(this).parent("ol").position().left);
JQueryユーザーの皆様、なぜ上記が機能しないのですか?
thisコード内で、選択した要素( subTab )を参照していません。
this
$(".subTab").css("left", function(){ return $(this).closest("ol").position().left; })