From 8f1e0ef25370c1b7f959355c385e76325272b4f6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Wed, 20 Dec 2006 13:10:29 +0000 Subject: [PATCH] Fixed docs for html() --- newandnoteworthy.txt | 1 + src/jquery/jquery.js | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/newandnoteworthy.txt b/newandnoteworthy.txt index 051dff5..d9c8b5c 100644 --- a/newandnoteworthy.txt +++ b/newandnoteworthy.txt @@ -10,6 +10,7 @@ New and Noteworthy - Improved event fixing, using less browser and more object detection - Fixed ID with context selectors (eg. div#id doesn't ignore "div" anymore) - Improved jQuery.merge to avoid unnecessary loops + - Fixed docs for html(): Now mentions that is not available for XML documents 1.0.4 ----- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index fd6d3a2..8a0a115 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -2461,6 +2461,9 @@ jQuery.macros = { /** * 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(); * @before
* @result @@ -2473,6 +2476,9 @@ jQuery.macros = { /** * 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("new stuff"); * @before
* @result
new stuff
-- 1.7.10.4