javascript tutorials? - Printable Version +- Forums - Open Redstone Engineers (https://forum.openredstone.org) +-- Forum: Off-Topic (https://forum.openredstone.org/forum-4.html) +--- Forum: Programming (https://forum.openredstone.org/forum-8.html) +--- Thread: javascript tutorials? (/thread-776.html) |
javascript tutorials? - David - 08-19-2013 I've recently been getting into building websites, I know enough about HTML and CSS, so I decided to follow some javascript tutorials. I've already completed the ones on w3schools. Now for some more advanced stuffz? -David RE: javascript tutorials? - mort96 - 08-19-2013 the way I've learned JS is to simply start playing around with the language. Try to make simple games. Try making more advanced games. Set yourself goals. Once you discover a pattern, try making an application (game?) using that pattern. Of corse, Google is insanely handy. RE: javascript tutorials? - David - 08-19-2013 (08-19-2013, 03:47 PM)mort96 Wrote: the way I've learned JS is to simply start playing around with the language. Try to make simple games. Try making more advanced games. Set yourself goals. Once you discover a pattern, try making an application (game?) using that pattern. ty RE: javascript tutorials? - Billman555555 - 08-20-2013 I learned my JS off of W3Schools and stealing/borrowing; mort/googles code. BEST WAY EVAH!!! RE: javascript tutorials? - David - 08-20-2013 (08-20-2013, 01:48 AM)Billman555555 Wrote: I learned my JS off of W3Schools and stealing/borrowing; mort/googles code. Ive completed the w3s tuts, and I dont feel very smart now. I just gotta practice a lil. RE: javascript tutorials? - mort96 - 08-20-2013 W3Schools may be useful, but before relying too much on them, make sure to read W3Fools. RE: javascript tutorials? - David - 08-20-2013 OK now, I was messin' round with javascript, HTML and CSS and I created a fancy menu that appears if you mouse-over some text, and dissapears if you leave the div with your mouse, now there is one problem: If you hover over a link it also dissapears. HTML and a part of the java-script (forum bug: cannot write it without the dash here.): Code: <!DOCTYPE HTML> The CSS (I doubt if you need it, but I'll post is anyway): Code: #header This is the code for fading in and out, I did not write it though: Code: // fadeEffects.js written By AdamKhoury.com If anybody can help me, please do . |