How do you get the entire HTML of h1 + ul > li > details > summary + p only if it has that structure? i.e. it wouldn’t get the HTML of a ul tag element if it doesn’t have a nested li, details etc.
JavaScript
x
1
1
h1+ul>li>details>summary+p
JavaScript
1
20
20
1
<div>
2
<h1>T1</h1>
3
<ul class="toggle">
4
<li>
5
<details>
6
<summary><strong>Q1</strong></summary>
7
<p>Answer1</p>
8
</details>
9
</li>
10
</ul>
11
<h1>T2</h1>
12
<ul class="toggle">
13
<li>
14
<details>
15
<summary>Q2</summary>
16
<strong>Answer2</strong>
17
</details>
18
</li>
19
</ul>
20
</div>
Advertisement
Answer
Like this?
JavaScript
1
7
1
const $collection = $("ul.toggle")
2
.has("li>details>summary+p")
3
.prev()
4
.addBack()
5
.addClass("red")
6
7
console.log($collection.text())
JavaScript
1
1
1
.red { background-color:red }
JavaScript
1
21
21
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
2
<div>
3
<h1>T1</h1>
4
<ul class="toggle">
5
<li>
6
<details>
7
<summary><strong>Q1</strong></summary>
8
<p>Answer1</p>
9
</details>
10
</li>
11
</ul>
12
<h1>T2</h1>
13
<ul class="toggle">
14
<li>
15
<details>
16
<summary>Q2</summary>
17
<strong>Answer2</strong>
18
</details>
19
</li>
20
</ul>
21
</div>