Jordan Posted June 26, 2013 Posted June 26, 2013 (edited) I really want to learn javascript for web development. I'll be using tutorials and posting my progress over the days. http://ilearnjavascript.1-ws.com/ Day 1 Used a quick guide on W3School <!DOCTYPE html> <html> <body> <p id="java">Is javascript easy?</p> <button type="button" onclick="textChange()">Click to get Jason's opinion</button> <script> function textChange() { document.getElementById("java").innerHTML="<b>Nope. smile.png</b>"; } </script> </body> </html> Day 2 <html> <body> <p id="java"></p> <button type="button" onclick="textChange()">Click to get My opinion</button> <script> function textChange() { document.getElementById("java").innerHTML="No, it is not.</p>"; } </script> <p id"test">Swag</p> <button type="button" onclick="textChange()">Spoiler</button> <script> function textChange() { document.getElementById("test").innerHTML:"swagger" } </script> </body> </html> Just played around and got nowhere today Edited August 13, 2013 by Jason
BotRS123 Posted June 27, 2013 Posted June 27, 2013 That is a really good site. Helped me learn quite a bit.
Guest Falixus Posted June 27, 2013 Posted June 27, 2013 (edited) Best of luck. Try out Codeacademy, it's a really fun website to learn various languages on. Javascript is included there. Edited June 27, 2013 by Falixus
Nicholas Posted June 27, 2013 Posted June 27, 2013 goodluck ill be USing that site also any day now, once im done with these lessons a friend is giving me
Jordan Posted June 29, 2013 Author Posted June 29, 2013 Just curious, if you become a master scripter, will you mentor me? Sure. But It will be a while. Will be updating this soon
Jordan Posted June 29, 2013 Author Posted June 29, 2013 Good luck with that looong and difficult journey! Thanks it should speed up with the new job at Oracle. 1
Andrew Posted July 25, 2013 Posted July 25, 2013 I learnt JavaScript while I was doing my course in college; it's not something that I really enjoyed but good luck anyway .