Which package looks better for the jQuery plugin:
$("#foo").runMyPlugin();
or
Is there a naming convention for jQuery that prefers over others?
Thanks in advance!
I would recommend you the first that the convention is widely used in JavaScript, even in the main language, the constructor functions are called with the first letter as capital (PascalCase).