Tagged Questions
1
vote
1answer
102 views
What's the protocol for a autoexecuting JQuery plugin?
I have a jQuery Plugin that I use myself which modifies the selected value of select items on a page.
In my own code the plugin automatically executes as soon as it is included in the page this code ...
3
votes
2answers
170 views
For a Javascript library, what is the best or standard way to support extensibility
Specifically, I want to support "plugins" that modify the behavior of parts of the library.
I couldn't find much information on the web about this subject. But here are my ideas for how a library ...
1
vote
1answer
124 views
When writing tests for a Wordpress plugin, should i run them inside wordpress or in a normal browser?
I have started using BDD for a wordpress plugin i'm working on and i'm rewriting the js codebase to do tests. I've encountered a few problems but i'm going steady now, i was wondering if i had the ...
3
votes
2answers
390 views
Strategy for designing a plugin API
I am working on an application for which a rich plugin API is crucial. What is the best process for creating an API that is intuitive and easy to learn?