Skip to content

Commit 5800735

Browse files
Dorin-Davidpasor1
andauthored
Update 2-ui/1-document/04-searching-elements-dom/1-find-elements/solution.md
Co-authored-by: Simone Pasini <66781510+pasor1@users.noreply.github.com>
1 parent 87eb86b commit 5800735

File tree

1 file changed

+1
-1
lines changed
  • 2-ui/1-document/04-searching-elements-dom/1-find-elements

1 file changed

+1
-1
lines changed

2-ui/1-document/04-searching-elements-dom/1-find-elements/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let form = document.getElementsByName('search')[0]
2424
// oppure, form specificamente
2525
document.querySelector('form[name="search"]')
2626

27-
// 5. Il primo input nella form.
27+
// 5. Il primo input contenuto in form.
2828
form.getElementsByTagName('input')[0]
2929
// oppure
3030
form.querySelector('input')

0 commit comments

Comments
 (0)