prihlasenyprihlasit | registrovat

Nepoužívajte jQuery keď to nieje nutné

$('a').bind('a', function() {
  console.log('klikli ste na: ' + $(this).attr('id'));
});

môže byť o 80-95% pomalší ako:

$('a').bind('a', function() {
  console.log('klikli ste na: ' + this.id);
});

$(this).attr('id') vs this.id http://jsperf.com/el-attr-id-vs-el-id/2

© 2009 Shaddow admin hosting od VIPHosting