Skip to content

Commit

Permalink
Merge pull request #188 from msisaifu/searching-elements-dom
Browse files Browse the repository at this point in the history
Searching: getElement*, querySelector*
  • Loading branch information
jaamaalxyz authored May 18, 2023
2 parents e8db105 + 98b5352 commit 21656e0
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 106 deletions.
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
There are many ways to do it.
এটি অনেকভাবে করা যায়।

Here are some of them:
এখানে দেখুন:

```js
// 1. The table with `id="age-table"`.
let table = document.getElementById('age-table')

// 2. All label elements inside that table
// 2. table এর মধ্যে সকল `label` এলিমেন্ট
table.getElementsByTagName('label')
// or
// বা
document.querySelectorAll('#age-table label')

// 3. The first td in that table (with the word "Age")
// 3. *table* এর প্রথম `td` (with the word "Age")
table.rows[0].cells[0]
// or
// বা
table.getElementsByTagName('td')[0]
// or
// বা
table.querySelector('td')

// 4. The form with the name "search"
// assuming there's only one element with name="search" in the document
// 4. `form` এলিমেন্ট যার `name="search"`
// ধরে নিন DOM এ একটি মাত্র name="search" এলিমেন্ট আছে
let form = document.getElementsByName('search')[0]
// or, form specifically
// বা,
document.querySelector('form[name="search"]')

// 5. The first input in that form.
// 5. `form` এর প্রথম `input` এলিমেন্ট.
form.getElementsByTagName('input')[0]
// or
// বা
form.querySelector('input')

// 6. The last input in that form
let inputs = form.querySelectorAll('input') // find all inputs
inputs[inputs.length-1] // take the last one
// 6. `form` এর শেষ `input` এলিমেন্ট
let inputs = form.querySelectorAll('input') // সকল ইনপুট
inputs[inputs.length-1] // শেষ এলিমেন্টটি নেয়া
```
20 changes: 10 additions & 10 deletions 2-ui/1-document/04-searching-elements-dom/1-find-elements/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ importance: 4

---

# Search for elements
# এলিমেন্টের অনুসন্ধান

Here's the document with the table and form.
এখানে table এবং form দ্বারা ডকুমেন্টটি।

How to find?...
কিভাবে খুঁজবেন?...

1. The table with `id="age-table"`.
2. All `label` elements inside that table (there should be 3 of them).
3. The first `td` in that table (with the word "Age").
4. The `form` with `name="search"`.
5. The first `input` in that form.
6. The last `input` in that form.
1. *table* এর id `id="age-table"`
2. *table* এর মধ্যে সকল `label` এলিমেন্ট(৩টি এলিমেন্ট আছে)।
3. *table* এর প্রথম `td` (যার কন্টেন্ট "Age")
4. `form` এলিমেন্ট যার `name="search"`
5. `form` এর প্রথম `input` এলিমেন্ট।
6. `form` এর শেষ `input` এলিমেন্ট।

Open the page [table.html](table.html) in a separate window and make use of browser tools for that.
এই পেজটি আলাদা উইন্ডোতে খুলুন [table.html](table.html) এবং ডেভ টুলসের সাহায্যে যাচাইগুলো চালান।
Loading

0 comments on commit 21656e0

Please sign in to comment.