| $.proxy ( context, nameFunction ) | เป็นการเรียกใช้ function ที่กำหนด ซึ่งอยู่ภายใน context ที่กำหนด |
|---|
syntax:$.proxy ( context, nameFunction )
return type:void
content:เป็นการเรียกใช้ function ที่กำหนด ซึ่งอยู่ภายใน context ที่กำหนด
example:var website = { name: "function.in.th", showMe: function ( ) { alert ( this.name ); } }; $.proxy ( website, "showMe" );