Skip to content

Commit a6881a9

Browse files
committed
fix typo
1 parent 3e8fa4f commit a6881a9

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# DOM.js
2-
##Dom helper
2+
## Dom helper
33
Cody Lindley의 'DOM을 깨우치다' 마지막 챕터 실습
44

55
---
66

7-
###Selector : $
7+
### Selector : $
88

99
- `$` : `jQuery`처럼 선택. 두번째 인자로 context 값 지정 가능
1010

@@ -20,9 +20,8 @@ var hi = $('<h1>Hi</h1>');
2020
$('body').append(hi);
2121
```
2222

23-
-
2423

25-
###Iteration : each
24+
### Iteration : each
2625

2726
- `each()` : iteration 하여 callback 함수 전달
2827

@@ -34,9 +33,8 @@ $('li').each(function(key, object){
3433
})
3534
```
3635

37-
-
3836

39-
###Manipulation : html, text, append, remove, empty
37+
### Manipulation : html, text, append, remove, empty
4038

4139
- `html()` : html 문자열 삽입, 인자가 없을경우 선택된 개체의 첫번째 element요소를 반환
4240
- `text()` : `html()` 메서드와 유사. 텍스트 노드를 다룬다.
@@ -46,7 +44,7 @@ $('li').each(function(key, object){
4644

4745
-
4846

49-
###Ajax
47+
### Ajax
5048

5149
**Usage**
5250

@@ -74,4 +72,4 @@ $.ajax({
7472
// do something...
7573
}
7674
})
77-
```
75+
```

0 commit comments

Comments
 (0)