Objeto de cache DOM jQuery
O primeiro problema com jQuery são as consultas sem cache. Em vez de fazer algo como: $(‘h1’).addClass(‘inactive’);$(‘h1’).text(‘hello’);$(‘h1’).animate({height: “100px”}); Você tem que fazer isso: var $h1 = $(‘h1’);$h1.addClass(‘inactive’);$h1.text(‘hello’);$h1.animate({height: “100px”}); Porque o …
Continuar lendo