To build and deploy your changes for previewing in a jquery-wp-content
instance, follow the workflow instructions from our documentation on contributing to jQuery Foundation web sites.
The xmllint
and xsltproc
utilities need to be in your path. If you are on Windows, you can get libxml2 and libxslt from zlatkovic.com.
Note: If you're using Windows and you receive the error "Error" when executing the task build-xml-entries:all
, try to add the DLL libwinpthread-1.dll
in the root of the project.
- Write in clear, easy-to-understand statements.
- Keep sentences short and to the point.
- Include the Oxford (serial) comma in a list of three or more items.
- Yes: The
load
,scroll
, anderror
events (e.g., on an<img>
element) do not bubble - No: The
load
,scroll
anderror
events (e.g., on an<img>
element) do not bubble
- Yes: The
- The documentation standardizes on American English spelling. For example:
- Yes: color, while, among, customize, argument
- No: colour, whilst, amongst, customise, arguement
- Use second-person pronoun ("you") when necessary, but try to avoid it.
- Favor the definite article ("the") over second-person possessive ("your").
- Yes: Insert the paragraph after the unordered list.
- No: Insert your paragraph after the unordered list.
- When editing current entries, change first-person plural pronouns ("we," "our," "us") to second-person.
- Yes: The
.insertAfter()
method here adds an unordered list beneath the paragraph. - No: And now we have our paragraph beneath the unordered list.
- Yes: The
- Prefer active voice over passive.
- Active: Calling
.click()
binds a click handler to the elements in the collection - Passive: Click handlers are bound to elements in the collection when
.click()
is called
- Active: Calling
Code in the API documentation should follow the jQuery Core Style Guide with the following addition:
- Document ready syntax: Use
$( document ).ready(function() {
instead of$(function() {
as it's harder for new users to distinguish the difference between the latter and an IIFE.
- Methods: use a dot, followed by the method name, followed by parentheses: e.g. The
.focus()
method is a shortcut for.on( "focus", handler )
in the first and second variations, and.trigger( "focus" )
in the third. - Properties: use a dot, followed by the property name: e.g.
.length
. - Functions: use the function name, followed by parentheses:
myFunction()
.
- Examples should indicate what the expected result will be before presenting the code. This makes code clearer and skimming easier, especially for newer coders who may not understand what is supposed to be happening from reading the code itself.
- Yes: Find all p elements that are children of a div element and apply a border to them.
- No: Find all p elements that are children of a div element.
- Make your example easy to follow with good comments so that the explanation isn't necessary.
- Subject
- The entirety of jQuery's public API
- Audience
- jQuery users
- International: Native and non-native English readers
- Experience Level: Absolute beginner through expert
- First-time through frequent consumers of site
- Purpose
- Describe comprehensively and accessibly every public method, property, and selector in the jQuery library
- Reinforce understanding of concepts through relevant code examples
- Demonstrate the effect the methods have by executing code examples
- Authors
- Proficient in JavaScript development
- Well versed in jQuery best practices
- Strong in English writing
- Tone
- Middle ground between formal and familiar. Err on the side of formality.
- Authoritative
- Tactful