X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=jquery%2Fjquery.js;h=50bbde33100da1a7024838f3adf250c38958e849;hb=340b55336924ee60d0de2f189f5d852e087d3a1f;hp=369ff88d62537597a58f9a2ea2193bbf60cbb586;hpb=82e0a5a810f09b601543d3406b65ac15bd22307e;p=jquery.git diff --git a/jquery/jquery.js b/jquery/jquery.js index 369ff88..50bbde3 100644 --- a/jquery/jquery.js +++ b/jquery/jquery.js @@ -1471,7 +1471,7 @@ jQuery.macros = { * @type jQuery * @param String expr A jQuery expression of elements to match. */ - append: "appendTo", + appendTo: "append", /** * Prepend all of the matched elements to another, specified, set of elements. @@ -1487,7 +1487,7 @@ jQuery.macros = { * @type jQuery * @param String expr A jQuery expression of elements to match. */ - prepend: "prependTo", + prependTo: "prepend", /** * Insert all of the matched elements before another, specified, set of elements. @@ -1503,7 +1503,7 @@ jQuery.macros = { * @type jQuery * @param String expr A jQuery expression of elements to match. */ - before: "insertBefore", + insertBefore: "before", /** * Insert all of the matched elements after another, specified, set of elements. @@ -1519,7 +1519,7 @@ jQuery.macros = { * @type jQuery * @param String expr A jQuery expression of elements to match. */ - after: "insertAfter" + insertAfter: "after" }, /**