Jump to content

  •  

  • iBotModz CBox


    Photo

    Javascript tutorials


    • Please log in to reply
    3 replies to this topic

    #1 SmokiestGrunl

    SmokiestGrunl

      Australian Retired Staff

    • Retired Staff

    • 3,888 posts
    • Joined: 02-September 07
    • Gender:Male
    • Location:Australia

    Posted 23 July 2009 - 02:33 AM

    Can anyone direct me to some good Javascript tutorials and maybe some examples that I can learn from.

    #2 iBotPeaches

    iBotPeaches

      General Grade 6

    • Owner

    • 6,570 posts
    • Joined: 29-July 07
    • Gender:Male
    • Location:Kansas

    Posted 23 July 2009 - 06:13 AM

    w3 schools I still find the best for learning any language.

    Heres the javascript page.

    http://www.w3schools...JS/js_intro.asp

    Small example of code.

    var myDate=new Date();
     myDate.setFullYear(2010,0,14);
    var today = new Date();
    
     if (myDate>today)
       {
       alert("Today is before 14th January 2010");
       }
     else
       {
       alert("Today is after 14th January 2010");
       }


    #3 lostmodz26

    lostmodz26

      I am lostmodz26.

    • VIP

    • 1,153 posts
    • Joined: 12-March 09
    • Gender:Male
    • Location:Northern Louisiana

    Posted 23 July 2009 - 09:04 AM

    Here's some beginner tutorials: http://www.pageresource.com/jscript/

    #4 SmokiestGrunl

    SmokiestGrunl

      Australian Retired Staff

    • Retired Staff

    • 3,888 posts
    • Joined: 02-September 07
    • Gender:Male
    • Location:Australia

    Posted 23 July 2009 - 03:00 PM

    I'll check both of those out this afternoon, thanks.