강의

멘토링

커뮤니티

Inflearn Community Q&A

ooo01089882's profile image
ooo01089882

asked

JavaScript+jQuery from Basics to Practice: Intermediate Part.1

Practice - Handling Nodes (6)

실습 -노드 다루기 (6)

Written on

·

233

0

//아래 코드는 현재는 작동하지 않는다. [12:20]
$menu.children().eq($menu.children().length -1).css("border", "5px solid #f00" );

$menu.children(":eq(-1)").css("border", "5px solid #f00");


css() → 이 안에 "border"를 빠트려서
작동되지 않았던 겁니다!

javascriptjquery

Answer

This question is waiting for answers
Be the first to answer!
ooo01089882's profile image
ooo01089882

asked

Ask a question