This commit is contained in:
Franck Marcia 2006-09-02 14:50:30 +00:00
parent 7f17d8f528
commit 519b7d33e2

View file

@ -335,7 +335,7 @@ jQuery.fn = jQuery.prototype = {
/** /**
* Access a property on the first matched element. * Access a property on the first matched element.
* This method makes it easy to retreive a property value * This method makes it easy to retrieve a property value
* from the first matched element. * from the first matched element.
* *
* @example $("img").attr("src"); * @example $("img").attr("src");
@ -417,10 +417,10 @@ jQuery.fn = jQuery.prototype = {
/** /**
* Access a style property on the first matched element. * Access a style property on the first matched element.
* This method makes it easy to retreive a style property value * This method makes it easy to retrieve a style property value
* from the first matched element. * from the first matched element.
* *
* @example $("p").css("red"); * @example $("p").css("color");
* @before <p style="color:red;">Test Paragraph.</p> * @before <p style="color:red;">Test Paragraph.</p>
* @result red * @result red
* *
@ -463,7 +463,7 @@ jQuery.fn = jQuery.prototype = {
}, },
/** /**
* Retreive the text contents of all matched elements. The result is * Retrieve the text contents of all matched elements. The result is
* a string that contains the combined text contents of all matched * a string that contains the combined text contents of all matched
* elements. This method works on both HTML and XML documents. * elements. This method works on both HTML and XML documents.
* *