Results 1 to 2 of 2

Thread: jquery fadeout issue

  1. #1
    Join Date
    Apr 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default jquery fadeout issue

    HI guys

    i am new to jquery, i wrote some code like below but it's not working can anybody help in that, where is the worng

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Untitled Document</title>
    <script type="text/javascript" src="js/jquery-1.2.6.pack.js"></script>
    <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>

    <style type="text/css">
    *{
    margin-right:200px;
    margin-top:50px;
    }
    #box{
    width:200px;
    padding:10px;
    border:1px solid #333;
    background:#333333;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    color:#FFFFFF;
    }
    a{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    color:#000;
    text-decoration:none;
    }
    a:hover{
    text-decoration:underline;
    }
    </style>
    <script type="text/javascript">
    $(function(){
    $('a').click(function() {
    $('#box').fadeOut('fast');
    });
    });
    </script>
    <div id="box">JQuery Fade-out Tutorial</div>
    <a href="#">Click here</a>
    </head>

    <body>
    </body>
    </html>
    Last edited by creative creator; 06-01-2010 at 07:45 AM.

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    I guess this part
    Code:
    <div id="box">JQuery Fade-out Tutorial</div>
    <a href="#">Click here</a>
    belongs between the <body> and </body> tags

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •