www.webdeveloper.com
+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    Join Date
    Jan 2013
    Posts
    7

    Post Need help with my Javascript again !!!!

    <html>

    <head>

    <title>MANCHESTER UNITED Life</title>

    <script type="text/javascript" src="cookie.js"></script>

    <Script type="text/javascript">
    function touchRock() {
    var userName = prompt("What is your name?",
    "Enter Your name here.");

    if (userName) {
    alert("It is good to meet you, " + userName + ".");
    document.getElementById("rockImg").src = "rock_happy.png";

    }
    }

    function writeCookie(name, value, days) {
    // By default, there is no expiration so the cookie is temporary
    var expires = "";

    // Specifying a number of days makes the cookie persistent
    if (days) {
    var date = new Date();
    date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
    expires = "; expires=" + date.toGMTString();
    }

    // Set the cookie to the name, value, and expiration date
    document.cookie = name + "=" + value + expires + "; path=/";
    }

    function readCookie(name) {
    // Find the specified cookie and return its value
    var searchName = name + "=";
    var cookies = document.cookie.split(';');
    for(var i=0; i < cookies.length; i++) {
    var c = cookies[i];
    while (c.charAt(0) == ' ')
    c = c.substring(1, c.length);
    if (c.indexOf(searchName) == 0)
    return c.substring(searchName.length, c.length);
    }
    return null;
    }

    function eraseCookie(name) {
    // Erase the specified cookie
    writeCookie(name, "", -1);
    }
    </script>
    </head>

    <body onload="alert('Welcome to Manchester United.');">

    <div style="margin-top:100px; text-align:center">

    <img id="rockImg" src="rock.png" alt="iRock" style="cursorointer"
    onclick="touchRock();"/>

    </div>
    </body>
    </html>

  2. #2
    Join Date
    May 2006
    Location
    Russia, Rostov-on-Don
    Posts
    1,154
    use [ code ] [ /code ] or jack the reaper will come for you
    use [code]YOUR CODE GOES HERE[/code] or burn in Hell

  3. #3
    Join Date
    Jan 2013
    Posts
    7
    Quote Originally Posted by Padonak View Post
    use [ code ] [ /code ] or jack the reaper will come for you
    where should i put the [ code] [/code] ??

  4. #4
    Join Date
    May 2006
    Location
    Russia, Rostov-on-Don
    Posts
    1,154
    around YOUR CODE w/o whitespaces
    use [code]YOUR CODE GOES HERE[/code] or burn in Hell

  5. #5
    Join Date
    Jan 2013
    Posts
    4
    What do you want to know is wrong with your JavaScript? We need more specifics. It works for what your logic is, even though you don't use the cookie portion of the code. I used the latest version of FF.

  6. #6
    Join Date
    Jan 2013
    Posts
    7
    Quote Originally Posted by jeremyraybrown View Post
    What do you want to know is wrong with your JavaScript? We need more specifics. It works for what your logic is, even though you don't use the cookie portion of the code. I used the latest version of FF.
    I am doing to make the logo to remember me if im leaving them for long time and im not sure that the code I am using is correct or not

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

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
HTML5 Development Center



Recent Articles