FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript-DOM/08_nextElementSibling_previous.js at master · last-endcode/JavaScript-DOM · GitHub
last-endcode
/
JavaScript-DOM
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript-DOM
/
08_nextElementSibling_previous.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (14 loc) · 609 Bytes
Breadcrumbs
JavaScript-DOM
/
08_nextElementSibling_previous.js
Copy path
File metadata and controls
16 lines (14 loc) · 609 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// nextElementSibling
// previousElementSibling
// remember this element not read white space just element
// and not same with nextSibling read white space, read comment
const
list_items
=
document
.
querySelector
(
'ul'
)
;
// previousElementSibling
list_items
.
previousElementSibling
.
style
.
background
=
'blue'
;
// nextElementSibling ul > next or inside ul
// output <script src=........
const
nextLi
=
list_items
.
nextElementSibling
;
console
.
log
(
nextLi
)
;
const
headingNext
=
document
.
querySelector
(
'h2'
)
;
// nextElement is ul and add background ul be red
headingNext
.
nextElementSibling
.
style
.
background
=
'red'
;
Back
|
FazBrowse Home
|
New Git URL