Side navigation
#9693 closed bug (fixed)
Opened June 29, 2011 09:50AM UTC
Closed June 29, 2011 01:46PM UTC
Inconsistency of document and code for .toggleClass
Reported by: | anferneeg | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | attributes | Version: | 1.6.1 |
Keywords: | neededdocs | Cc: | |
Blocked by: | Blocking: |
Description
In document, it said
.toggleClass( function(index, class), [switch] )
But more precisely, the function should be something like function(index, class, switch).
Source code, https://github.com/jquery/jquery/blob/master/src/attributes.js
jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
and sample code: http://jsfiddle.net/slater/sDVfK/2/
Either document or code should be modified.
Attachments (0)
Change History (1)
Changed June 29, 2011 01:46PM UTC by comment:1
component: | unfiled → attributes |
---|---|
keywords: | → neededdocs |
priority: | undecided → low |
resolution: | → fixed |
status: | new → closed |
Thank you! docs updated: http://api.jquery.com/toggleClass/