Я хотел бы очистить содержимое DIV
на основе класса в DIV
, например, моя страница будет содержать
<html>
<head></head>
<body>
<div>
<p class="foo">some text</p>
<p>test1</p>
<p>test 2</p>
</div>
</body>
</html>
Результат будет:
<div>
<p class="foo">some text</p>
<p>test1</p>
<p>test 2</p>
</div>
Я пытался
$.get("https://some.url.com/index.html", function(my_var) {
console.log($(my_var).closest('div').find('.foo'));
});
Но просто получить пустой результат?