tags:

views:

132

answers:

4

Dear All,

I am experienced in the technical support like Linux, oracle, sunos etc and but if i say scripting i know little bit of bash. Now i promoted to manage technical engineers including some JavaScript developers, so i want to learn JavaScripting so that i can understand engineers. Hope you understand. Can you please advise me how can i start JavaScripting and point me to some simple docs and examples.

+2  A: 

Start learning form here :

http://www.w3schools.com/js/default.asp

http://www.w3schools.com/js/js_intro.asp

But i think also better to start with the jquery a good library for the javascript After you done with javascript : http://docs.jquery.com/Main_Page

Pranay Rana
Out of date and packed with bad examples and IEisms.
David Dorward
but i think its very good for the starters
Pranay Rana
It has been shocking to find that _many_ of the things I saw on that site are frowned upon by professionals.
nc3b
It isn't very good for "the starters". It gets them into bad habits really quickly.
David Dorward
And starting with jQuery is a deadful idea. The number of questions on this site from people who have written jQuery code that doesn't work because they don't understand how scope works in JS is shocking. Learn the language before you start with complicated DOM manipulation libraries.
David Dorward
thanks for the info ans is updated now
Pranay Rana
+3  A: 

I find this the best free guide to javascript: http://eloquentjavascript.net/

nc3b
+3  A: 

JavaScript: The Good Parts is a good, and thin, book. The videos by the same author are also very good. The MDC documentation is excellent (but watch out for features added post-1.5 which are usually not supported by Internet Explorer).

David Dorward
I'm not sure I'd recommend diving straight into *JavaScript: The Good Parts* to a beginner.
Tim Down
+2  A: 

Look at A Beginner's Guide to JavaScript, it includes tips and examples and Javascript Tutorials for Beginner's

Space