- 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
-----
/**\r
* Get the html contents of the first matched element.\r
*\r
+ * A wrapper for the innerHTML property of DOM elements, therefore\r
+ * not available for XML documents.\r
+ *\r
* @example $("div").html();\r
* @before <div><input/></div>\r
* @result <input/>\r
/**\r
* Set the html contents of every matched element.\r
*\r
+ * A wrapper for the innerHTML property of DOM elements, therefore\r
+ * not available for XML documents.\r
+ *\r
* @example $("div").html("<b>new stuff</b>");\r
* @before <div><input/></div>\r
* @result <div><b>new stuff</b></div>\r