I am trying to extract an element from the html with the function that I have.
JavaScript
x
15
15
1
document.querySelector('#get_html').addEventListener('click', function () {
2
var url = document.querySelector('#url_html');
3
4
5
6
var request = new XMLHttpRequest();
7
request.open("GET", url.value);
8
request.send();
9
10
request.onload = function() {
11
console.log(request.response);
12
};
13
14
})
15
I have an input where I put the url of a page and the function brings me the complete html of the page
JavaScript
1
18
18
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7
<title>Document</title>
8
</head>
9
<body>
10
<div class="offer">
11
<div class="card"></div>
12
<div class="card"></div>
13
<div class="card"></div>
14
<div class="card"></div>
15
</div>
16
</body>
17
</html>
18
this is the html that it throws me, now what I want is to extract that div element with the offer class
Advertisement
Answer
You can use parseFromString
to get the string from the response into a format you can query the DOM.
JavaScript
1
21
21
1
var responseText = `<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7
<title>Document</title>
8
</head>
9
<body>
10
<div class="offer">
11
<div class="card"></div>
12
<div class="card"></div>
13
<div class="card"></div>
14
<div class="card"></div>
15
</div>
16
</body>
17
</html>`;
18
19
const parser = new DOMParser();
20
const doc = parser.parseFromString(responseText, "text/html");
21
console.log(doc.querySelector(".offer"));