SmokiestGrunl Posted July 23, 2009 Report Posted July 23, 2009 Can anyone direct me to some good Javascript tutorials and maybe some examples that I can learn from.
iBotPeaches Posted July 23, 2009 Report Posted July 23, 2009 w3 schools I still find the best for learning any language. Heres the javascript page. http://www.w3schools.com/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"); }
lostmodz26 Posted July 23, 2009 Report Posted July 23, 2009 Here's some beginner tutorials: http://www.pageresource.com/jscript/
SmokiestGrunl Posted July 23, 2009 Author Report Posted July 23, 2009 I'll check both of those out this afternoon, thanks.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now