<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml-stylesheet type='text/xsl' href='docs.xsl'?>
<docs>
<method cat='Effects' type='jQuery' short='Fade out all matched elements by adjusting their opacity and firing an
optional callback after completion.' name='fadeOut'>
<desc>Fade out all matched elements by adjusting their opacity and firing an
optional callback after completion.

Only the opacity is adjusted for this animation, meaning that
all of the matched elements should already have some form of height
and width associated with them.</desc>
<see>fadeIn(String|Number,Function)</see>
<see>fadeTo(String|Number,Number,Function)</see>
<params type='String|Number' name='speed'>
<desc>(optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).</desc>
</params>
<params type='Function' name='callback'>
<desc>(optional) A function to be executed whenever the animation completes.</desc>
</params>
<examples>
<code>$("p").fadeOut("slow");</code>
</examples>
<examples>
<code>$("p").fadeOut("slow",function(){
  alert("Animation Done.");
});</code>
</examples>
</method></docs>
