“jQuery удалить атрибут” Ответ

Удалить атрибут jQuery

$("button").click(() => {
  $("div").removeAttr("id"); // <div id='12' class='nice'></div> --> <div class='nice'></div>
});
Ganandor

Кнопка jQuery Удалить атрибут отключенного

//for a class
$('.inputDisabled').prop("disabled", false);
//for a ID
$('#inputDisabled').prop("disabled", false);
Ivan The Terrible

jQuery удалить атрибут

jQuery(document).ready(function($){
	$('.className').click(function(){
    	$('.targetElementClassName').removeAttr('title');
    });
});
Gabriel Francis Banua

назначенное свойство удалить в jQuery

We can use removeAttr() to delete the assigned property of the element.

Example:
<p class="element_name" id="element_id" name="element_name">
  
js: $("p").removeAttr("name");
output: <p class="element_name" id="element_id">
Ankur

Ответы похожие на “jQuery удалить атрибут”

Вопросы похожие на “jQuery удалить атрибут”

Больше похожих ответов на “jQuery удалить атрибут” по JavaScript

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

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