I've created a jQuery wee plugin for myself which takes care of showing, hiding and submitting a form to give in-place editing. Currently I have several of these on a page which function independently and I am happy. However, I'm thinking that an 'Edit All' might be useful. I'd therefore want to be able to access all instances of the plugin within the page and access their show/hide/validate/submit functions in unison. Is there a way to do this?
|
|
|
|
|
|
|
Use the custom events in jQuery to make this easy. Something like this:
Then you can just
|
||
|
|
|
Hmmm I guess I could create an array of instances...
and access them through that. |
||
|
|
