vote up 0 vote down star

Possible Duplicate:
Starting javascript development - what to do?

I am trying to create my first website and based on inputs from here I have selected the YUI javascript library for whe UI elements.
Since this is my first foray into javascript I am feeling a bit lost although I have programmed in Java for some time now... how do I get started with Javascript?
Your suggestions would surely get me on the right track.

flag
Duplicate of: stackoverflow.com/questions/83444/… among others. – George Stocker Sep 22 at 21:15
It's possible to build a website without javascript. So - what do you want the javascript to do for your site? What kind of website? – Mike Blandford Sep 22 at 21:17
I tried searching for javascript on SO and the best I found was stackoverflow.com/questions/12669/… Thanks for the pointer. – Kevin Boyd Sep 22 at 21:17
1  
I would suggest using google with "site:stackoverflow.com" to search SO. SO's search is really... well... not good. – womp Sep 22 at 21:17
@Mike: a device calculating temperature is transmitting values to the server, the server logs this data, no my webpage reads these values from the server and needs to display charts and graphs and various other parameter... – Kevin Boyd Sep 22 at 21:19

closed as exact duplicate by George Stocker, Martin, Crescent Fresh, Justin Standard, Bill the Lizard Sep 23 at 2:24

7 Answers

vote up 2 vote down check

I think it's very important to understand core javascript before you start using a library, so a good place to get your feet wet is in Mozilla's A re-introduction to JavaScript. Being an experienced programmer, you shouldn't have to read through pages of tutorials designed for first-time scripters, so that should cover the basics for you.

Next I would go through some high-quality tutorials to get a handle on javascript. A good one is Eloquent JavaScript, which will really walk you through writing good, syntactic javascript but without all the hudge-pudge of other tutorials.

After that I would say you should be fine to start following some YUI tutorials, developing applications, etc.

Finally, if your feeling spunky, you can go through John Resig's Learning Advanced Javascript. It goes over alot more advanced topics that set good javascript developers apart.

link|flag
vote up 2 vote down

The W3Schools javascript tutorial is relatively useful.

Also... Javascript is not anything like Java. Greg Hewgill's answer comes to mind when considering how similar they are ;)

link|flag
1  
FWIW again, w3schools is not affiliated with W3C and their technical material isn't endorsed by anyone in particular. – bobince Sep 22 at 21:25
gah thanks. I knew that... yet I still think "w3c" in my head.... – womp Sep 22 at 21:27
vote up 1 vote down

Read the documentation at Mozilla Foundation.

link|flag
vote up 1 vote down

W3schools has a beginner tutorial for the basic functions. Helpful.

link|flag
vote up 1 vote down

Learn about when and how best to use scripting within your site. What to do, what not to do. With great power, etc... Read a little about:

  • Progressive enhancement
  • Unobtrusive scripting
  • Separation of content / presentation / behaviour

Then, in terms of the langugae itself, it might be nice to start with some JavaScript design patterns. How common patterns such as private class members, singletons, facades, interfaces, etc... can be achieved in JavaScript even though at first glance it appears that they can't be.

Of course, if you've come from a Java background you'll want to have some fun experimenting with the dynamic nature of JavaScript. Messing about with classes at run-time, monkey-patching, duck-typing, etc...

Man, you've got me all excited about JavaScript again.

link|flag
vote up 1 vote down

Install firebug plugin for firefox. It is very useful for learning and debugging (test javascript examples with firebug console). Also, learn js-framework, jquery for example.

link|flag
vote up 1 vote down

On top of the resources at the W3C schools I would also recommend reading Douglas Crokford's javascript tutorials on his page (or even buying his book).

Some key aspects that I recommend you become familiar with are closures and the prototype-based model.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.