“jQuery Clear Text в div” Ответ

jQuery пусто

// Remove all child nodes of the set of matched elements from the DOM
// This method does not accept any arguments.
$("div.parent").empty();
Sparkling Squirrel

jQuery Clear Text в div

// removes only text, no changes to children
$('#YourDivId').contents().filter((_, el) => el.nodeType === 3).remove();
Chris PA

Ответы похожие на “jQuery Clear Text в div”

Вопросы похожие на “jQuery Clear Text в div”

Больше похожих ответов на “jQuery Clear Text в div” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования