Оптимизация
// было
$("a.button").addClass("active");
/* ... */
$("a.button").click(function(){ /* ... */ });
// стало
var $button = $("a.button");
$button.addClass("active");
/* ... .*/
$button.click(function(){ /* ... */ });// было
$("a.button").addClass("active");
$("a.button").click(function(){ /* ... */ });
// стало
$("a.button")
.addClass("active")
.click(function(){ /* ... */ });
Примеры оптимизаций


Last updated