Fade to a certain opacity : fadeTo « jQuery « JavaScript Tutorial






<html>
  <head>
    <style>
      .test{ border: 1px solid red; }
    </style>
  
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
         
         $("p:parent").fadeTo(1500, 0.3);

    });

    </script>


  </head>
  <body>
      <div><p>paragraph in div</p></div>
      <div>div</div>


  </body>
</html>








30.40.fadeTo
30.40.1.Fade to a certain opacity
30.40.2.Fade to callback
30.40.3.Fast fade to
30.40.4.Fade to in milliseconds
30.40.5.Fade to random
30.40.6.Slow fade to
30.40.7.fadeTo(speed, opacity, callback): Only the opacity is adjusted for this animation