문서 | 날짜 | 사용자 | 설명 |
|
2021/04/07 09:18 |
오션 |
HOW TO
* description : How to add active class to current element
* author : 오션
* email : shlim@repia.com
* lastupdate : 2021-04-07
Ref
How to add active class to current element
JavaScript를 사용하여 현재 요소에 액티브 클래스를 추가하는 방법을 학습합니다. |
|
2021/06/02 14:16 |
오션 |
jQuery element Selector
* description : jQuery element Selector
* author : 오션
* email : shlim@repia.com
* lastupdate : 2021-06-02
The source of this article
jQuery element Selector
Example
모든 p 요소를 선택합니다.
<body>
<h1>Welcome to My Homepage</h1>
<p class="intro">My name is Donald.</p> <!-- 배경색 변경 -->
<p>I live in Duckburg</p> <!-- 배경색 변경 -->
<p>My best friend is Mickey</p> <!-- 배경색 변경 -->
who is your favourite:
<ul id="choose">
<li>Goofy</li>
<… |
|
2021/06/02 15:00 |
오션 |
jQuery multiple element Selector
* description : jQuery multiple element Selector
* author : 오션
* email : shlim@repia.com
* lastupdate : 2021-06-02
The source of this article
jQuery multiple element Selector
Example
모든 <h2>, <div>, <span> 요소들을 선택합니다. |