Example JSDoc for jQuery:
Code: Select all
/**
* Add elements to the set of matched elements
* @param {} selector selector expression
* @param {} context the point in the document at which the selector should begin matching
* @return {jQuery}
*/
$.prototype.add = function(selector, context){};
One can see only the name of the method and params (without description).

In version 1.6.18 everything worked perfectly.
Prompt is the problem. Thank you.