Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jQuery: Add a self-closed tag back to an example
This adds an actual quick-closed tag in this code example, as it is implied by the text that there can be one: > Tags that cannot contain elements may be quick-closed or not: > ```js > $( "<img>" ); > $( "<input>" ); > ``` to: > Tags that cannot contain elements may be quick-closed or not: > ```js > $( "<img />" ); > $( "<input>" ); > ``` Closes gh-1264
- Loading branch information