I've seen some jquery code where people extend the main object like:
$('someId').myCustomObject();
Is this possible or am I mistaken? (if yes, how?)
|
|
I've seen some jquery code where people extend the main object like:
Is this possible or am I mistaken? (if yes, how?)
|
||
|
|
|
|
Yes it's easily possible. The standard pattern for building extensions is:
This allows you to use '$' in the plug-in, yet allows compatibility mode. |
||
|
|
|
|
I believe what you're looking for is jQuery.fn.extend: |
||
|
|