diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 2ce32e1f..88930f22 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -3098,15 +3098,19 @@ jQuery.macros = { }, /** - * Removes the specified class from the set of matched elements. + * Removes all or the specified class from the set of matched elements. * - * @example $("p").removeClass("selected") + * @example $("p").removeClass() * @before
Hello
* @result [Hello
] * + * @example $("p").removeClass("selected") + * @beforeHello
+ * @result [Hello
] + * * @name removeClass * @type jQuery - * @param String class A CSS class to remove from the elements + * @param String class (optional) A CSS class to remove from the elements * @cat DOM */ removeClass: function(c){