PPPHP
PPPHP

Reputation: 737

JQuery and Secondary Functions in plugins

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

Answers (1)

Kerry Jones
Kerry Jones

Reputation: 21838

With the example they gave:

var txt = 'Hello world!';
$.hilight.format( txt );

Upvotes: 2

Related Questions