Jordan Posted June 26, 2013 Share 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 Link to comment Share on other sites More sharing options...
BotRS123 Posted June 27, 2013 Share Posted June 27, 2013 That is a really good site. Helped me learn quite a bit. Link to comment Share on other sites More sharing options...
Guest Falixus Posted June 27, 2013 Share 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 Link to comment Share on other sites More sharing options...
Nicholas Posted June 27, 2013 Share 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 Link to comment Share on other sites More sharing options...
Jordan Posted June 29, 2013 Author Share 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 Link to comment Share on other sites More sharing options...
Skype Posted June 29, 2013 Share Posted June 29, 2013 Good luck with that looong and difficult journey! Link to comment Share on other sites More sharing options...
Jordan Posted June 29, 2013 Author Share Posted June 29, 2013 Good luck with that looong and difficult journey! Thanks it should speed up with the new job at Oracle. 1 Link to comment Share on other sites More sharing options...
Denny Posted July 24, 2013 Share Posted July 24, 2013 Nice nice Link to comment Share on other sites More sharing options...
Sk8erz Posted July 25, 2013 Share Posted July 25, 2013 Good luck man hope you do well =) Link to comment Share on other sites More sharing options...
Andrew Posted July 25, 2013 Share 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 . Link to comment Share on other sites More sharing options...
Jordan Posted August 13, 2013 Author Share Posted August 13, 2013 Updated. Link to comment Share on other sites More sharing options...