jQuery.fn

jQuery.fnはグローバルjQueryオブジェクトのプロトタイプであり、jQuery.prototypeと同義である。

構文

window.jQuery.fn
jQuery.fn
window.$.fn
$.fn

jQuery.fn.myFunc = function() {
  alert('My function');
}
jQuery('#p1').myFunc();