943,592 Members | Top Members by Rank

Ad:
You are currently viewing page 1 of this multi-page discussion thread
Sep 17th, 2003
0

recommendations for JavaScript learning resources?

Expand Post »
Hi all,

I've finally decided to get serious about learning JavaScript, and to facilitate this endeavor I've unearthed my copy of Danny Goodman's JavaScript Bible, 3rd Ed. (circa 1995, for which I no longer have the companion CD), but on reading the first chapter alone Ive realized just how outdated this tome is (with references to IE & NN v.2.0, Win3.1, "Digital's" Alta Vista, etc), so I am now considering purchasing the updated 4th Ed. The only problem with that is that I've read the reviews on Amazon.com and, judging by many of the reviews, it apparently doesn't live up to it's billing. I'm wondering if any of you have read the entire 4th Ed., or at least a substantial portion of it, and if so what your impressions are of it. Along with that, are there any particular references and/or tutorials - online or hardcopy- that you'd recommend I consider, or avoid, in acquiring this new-to-me skillset? Appropriate comments greatly appreciated!
Similar Threads
Team Colleague
Reputation Points: 186
Solved Threads: 8
Team Member - aka kaynine
aeinstein is offline Offline
643 posts
since May 2002
Sep 22nd, 2003
0

Re: recommendations for JavaScript learning resources?

wow, it seems incongruous with all of the web knowledgeable ppl that frequent these boards that no one has a resource to point me to.
Team Colleague
Reputation Points: 186
Solved Threads: 8
Team Member - aka kaynine
aeinstein is offline Offline
643 posts
since May 2002
Sep 24th, 2003
0

Re: recommendations for JavaScript learning resources?

Heh... I'm a .Net guy :-P no java in my blood.
Moderator
Reputation Points: 322
Solved Threads: 28
The C# Man, Myth, Legend
Tekmaven is offline Offline
914 posts
since Feb 2002
Sep 25th, 2003
0

Re: recommendations for JavaScript learning resources?

OK, here I go ...

Are you sure you want to learn JavaScript and not a "real" language (such as java, for example)? JavaScript is a scripting language - meaning it's not awfully powerful and runs in a web browser client-side (as opposed to server-side).

It's used quite a bit to take care of the small lil tricks on the web. For example, you can use it to change an image when it's hovered over, create an online tic-tac-toe game, or even hangman. However, it can't be used with a backend database, etc. etc.

The best way to learn javascript is just to look at a whole lotta code snippets and see how things are done. It's really easy to figure out.

Check out www.javascriptsource.com <-- great site!


http://www.webteacher.com/javascript/
http://www.w3schools.com/js/default.asp
http://www.pageresource.com/jscript/index4.htm

I just did a google search for "javascript tutorial" and came up with those. They all look pretty good. Also, there are a lot of full working examples given, cuz as I said, it's the best way to learn.
Administrator
Staff Writer
Reputation Points: 1422
Solved Threads: 162
The Queen of DaniWeb
cscgal is offline Offline
13,645 posts
since Feb 2002
Sep 30th, 2003
0

Re: recommendations for JavaScript learning resources?

webmonkey also has some good tutorials if I remember correctly. Another book you might want to look at is The Complete Idiots guide to JavaScript. It's pretty good. Though I agree with csgal, I'd learn a 'real' language. This is not to say you can't also know JS, just don't spend all your time on it. Because there is programs, such as Adobe ImageReady, that can take care of the bulk of your JS for you. Though it is good to understand it, in order to make changes or customize it. If you're really into a web language, I'd suggest php. Otherwise I'd learn Java, which could be used online or off
Reputation Points: 46
Solved Threads: 2
Junior Poster
Iron_Cross is offline Offline
117 posts
since Jul 2003
Oct 4th, 2003
0

Re: recommendations for JavaScript learning resources?

thanks anyway tekmaven (but please dont confuse java w/javascript)

thanks cscgal & iron_cross
i am aware of the what & why of javascript and i'm sure my www ide of choice (dreamweaver) can handle 90%+ of the coding, and ur both right about the "real language" bit, but i want to get a "semi-ool" language under my belt b4 i go ont to a real ool such as c++ (& then java); haven looked into php yet - ool?

thanx again
Team Colleague
Reputation Points: 186
Solved Threads: 8
Team Member - aka kaynine
aeinstein is offline Offline
643 posts
since May 2002
Nov 15th, 2003
0

Re: recommendations for JavaScript learning resources?

If you need some more:

http://www.funky-chickens.com/java2.shtml <- Basic, Basic, Basic.
http://www.javascript-page.com/ <- Examples

I would recommend picking up a book on javascript, you can learn so much more and easier than just online tutorials, as it's a guide put together for a step by step learning process.
Reputation Points: 12
Solved Threads: 3
Posting Whiz in Training
rixius is offline Offline
212 posts
since Nov 2003
Jun 13th, 2004
0

Re: recommendations for JavaScript learning resources?

I went to the link to learn something.. and get some free code but this didn't work and wondering why? I use Dreamweaver normally but FP was on this laptop so tried it out there.
I thought JS had to go after all the rest of the coding here. I have JS on some sites which so say prevents non savvy users from pinching pictures.........
why isn't this working please? It would be good to be able to make the source code invisible is there a way please? I hide some code by pushing it a mile down the source code page. Anyone searching then thinks it's empty from there on..


html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>contact</title>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta name="Microsoft Theme" content="capsules 011, default">
<meta name="Microsoft Border" content="none, default">
</head>

<body></body>
<XMP><script language="JavaScript"><!--function click()
{if (event.button==2){alert('This is my Script')}}document.onmousedown=click// --></script></XMP></TEXTAREA></DIV>
</html>
Reputation Points: 10
Solved Threads: 0
Newbie Poster
MtBobcat is offline Offline
3 posts
since Jun 2004
Jun 13th, 2004
0

Re: recommendations for JavaScript learning resources?

its not working because its all inside of a comment. remove the <!-- and --> from it. so it looks just like this

JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)
  1. <xmp>
  2. <script language="JavaScript">
  3. function click()
  4. {if (event.button==2){alert('This is my Script')}}document.onmousedown=click//
  5. </script>
  6. </xmp>

also, remember good formatting of the code will be your best freind later on down the line when you write very long and coplex scripts.
Reputation Points: 152
Solved Threads: 39
Master Poster
Killer_Typo is offline Offline
778 posts
since Apr 2004
Jun 13th, 2004
0

Re: recommendations for JavaScript learning resources?

Please post new questions as separate threads so that multiple questions don't get lost on multiple pages of a single thread. In response to aeinstein's original question - check out www.javascriptsource.com - it has tons of free javascript code snippets that do a range of things along with demos of each - learning by example.
Administrator
Staff Writer
Reputation Points: 1422
Solved Threads: 162
The Queen of DaniWeb
cscgal is offline Offline
13,645 posts
since Feb 2002

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in JavaScript / DHTML / AJAX Forum Timeline: regarding back button disabling in IE and Firefox
Next Thread in JavaScript / DHTML / AJAX Forum Timeline: popup in ie8





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC