Fixed docs for html()
This commit is contained in:
parent
2abdbd4e30
commit
8f1e0ef253
|
@ -10,6 +10,7 @@ New and Noteworthy
|
||||||
- Improved event fixing, using less browser and more object detection
|
- Improved event fixing, using less browser and more object detection
|
||||||
- Fixed ID with context selectors (eg. div#id doesn't ignore "div" anymore)
|
- Fixed ID with context selectors (eg. div#id doesn't ignore "div" anymore)
|
||||||
- Improved jQuery.merge to avoid unnecessary loops
|
- Improved jQuery.merge to avoid unnecessary loops
|
||||||
|
- Fixed docs for html(): Now mentions that is not available for XML documents
|
||||||
|
|
||||||
1.0.4
|
1.0.4
|
||||||
-----
|
-----
|
||||||
|
|
6
src/jquery/jquery.js
vendored
6
src/jquery/jquery.js
vendored
|
@ -2461,6 +2461,9 @@ jQuery.macros = {
|
||||||
/**
|
/**
|
||||||
* Get the html contents of the first matched element.
|
* Get the html contents of the first matched element.
|
||||||
*
|
*
|
||||||
|
* A wrapper for the innerHTML property of DOM elements, therefore
|
||||||
|
* not available for XML documents.
|
||||||
|
*
|
||||||
* @example $("div").html();
|
* @example $("div").html();
|
||||||
* @before <div><input/></div>
|
* @before <div><input/></div>
|
||||||
* @result <input/>
|
* @result <input/>
|
||||||
|
@ -2473,6 +2476,9 @@ jQuery.macros = {
|
||||||
/**
|
/**
|
||||||
* Set the html contents of every matched element.
|
* Set the html contents of every matched element.
|
||||||
*
|
*
|
||||||
|
* A wrapper for the innerHTML property of DOM elements, therefore
|
||||||
|
* not available for XML documents.
|
||||||
|
*
|
||||||
* @example $("div").html("<b>new stuff</b>");
|
* @example $("div").html("<b>new stuff</b>");
|
||||||
* @before <div><input/></div>
|
* @before <div><input/></div>
|
||||||
* @result <div><b>new stuff</b></div>
|
* @result <div><b>new stuff</b></div>
|
||||||
|
|
Loading…
Reference in a new issue