How do you add a new method called 'debug' to jQuery's objects?
Explanation
You have to add your function to the $.fn namespace. Please note that inside the function, this will refer to the jQuery object, not a DOM object. Example:

$.fn.debug = function(){
   this.css('background','red');
}
$('p').debug();

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты