Reputation: 737
http://www.learningjquery.com/2007/10/a-plugin-development-pattern
I read this tutorial and there was a talk about secondary functions in a plugin.
How can I use those functions outside the plugin?
Upvotes: 0
Views: 197
Reputation: 21838
With the example they gave:
var txt = 'Hello world!';
$.hilight.format( txt );
Upvotes: 2