“Mudar html div jQuery” Respostas de código

Mudar html div jQuery

// html
 <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2 total-price bold red"> 0  </div>

// jquery
var price = 1000;
$('.total-price').html(price);
$('.total-price').text(price);

Zidane (Vi Ly - VietNam)

Altere HTML usando jQuery

//Takes input from entire page and uses it to change the HTML of h1
$(document).keypress(function(event){
  $("h1").text(event.key);
});
Crazy Civet

Respostas semelhantes a “Mudar html div jQuery”

Perguntas semelhantes a “Mudar html div jQuery”

Mais respostas relacionadas para “Mudar html div jQuery” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código