Ep47 - Filter First Column using keyUp() javascript Source Code

Опубликовано: 20 Май 2020
на канале: UI Monk
63
0

Filter table in javascript Source Code:
https://drive.google.com/open?id=1Wiu...

Steps to Create
1. Design HTML and CSS
2. initialize keyup function in Javascript
3. get input and table in Javascript
4. convert input value to uppercase in Javascript
5. get all tr from table in Javascript
6. get all td in tr using for loop in Javascript
7. get only first column using for loop in Javascript
8. ignore the first row in table it has "th"
9. convert the html to text in Javascript
10. convert the text to uppercase in Javascript
11. use indexOf to compare the text in Javascript

in this course:
1. what is indexOf() in javascript
2. how to use for loop in javascript
3. how to use getElementsByTagName() in javascript
4. Convert Text to uppercase in javascript