Follow us on Twitter!
Follow us on Facebook!
 

Go Back   Pixtus - Photography Forum, Photographers, Photo Tips > Business Discussion > Website Talk


Javascript Book Recommendations

This is a discussion on Javascript Book Recommendations within the Website Talk forums, part of the Business Discussion category; Can any recommend books on working with Javascript? I've worked with it on basic level, but I'm looking for something ...

Reply
 
LinkBack Thread Tools Display Modes
  (#1) Old
This Space For Rent
 
jloyphoto's Avatar
 
Posts: 111
Join Date: Jun 2005
Location: Fort Worth, Texas
Real First Name: Jeff
Camera: D200
Can Others Edit My Photos: No
iTrader Rating: 3

Likes Received LIKES Received: 0
Likes Given LIKES Given: 1
Javascript Book Recommendations - 03-27-2010, 07:44 PM


Can any recommend books on working with Javascript? I've worked with it on basic level, but I'm looking for something that would serve as a solid reference source.

Thanks.

---------------------------
Jeff Loy
www.jeffloyphoto.com
www.jmlphotoworks.com
Reply With Quote
Sponsored Links

Premium Members do not see Google advertisements. SIGN UP today and help support our community.
  (#2) Old
Senior Member
 
dryicerx's Avatar
 
Posts: 408
Join Date: Feb 2009
Location: Austin, TX, Texas
Real First Name: J
Camera: Canon
Can Others Edit My Photos: Yes
iTrader Rating: 0

Likes Received LIKES Received: 0
Likes Given LIKES Given: 0
03-27-2010, 08:58 PM


Quote:
Originally Posted by jloyphoto View Post
Can any recommend books on working with Javascript? I've worked with it on basic level, but I'm looking for something that would serve as a solid reference source.

Thanks.
O'Reilly Javascript Definitive Guide would probably be a good desk reference.

But you can also equally get by with w3school.com or the myriad of other online references... their free, available all the time, and updated constantly.
Reply With Quote
  (#3) Old
This Space For Rent
 
jloyphoto's Avatar
 
Posts: 111
Join Date: Jun 2005
Location: Fort Worth, Texas
Real First Name: Jeff
Camera: D200
Can Others Edit My Photos: No
iTrader Rating: 3

Likes Received LIKES Received: 0
Likes Given LIKES Given: 1
03-30-2010, 10:10 PM


Thanks for the suggestion. I have plenty of bookmarks online, just hoping to find something in print with everything combined.

(Yeah, I know...wishful thinking).

---------------------------
Jeff Loy
www.jeffloyphoto.com
www.jmlphotoworks.com
Reply With Quote
  (#4) Old
Forum Regular
 
RKEnnis's Avatar
 
Posts: 940
Join Date: Mar 2006
Location: San Antonio, Texas
Real First Name: Randy
Camera: Nikon
Can Others Edit My Photos: Yes
iTrader Rating: 1

Likes Received LIKES Received: 3
Likes Given LIKES Given: 3
03-31-2010, 12:41 AM


Strongly agree with the "O'Reilly Javascript Definitive Guide" recommendation! It's the javascript bible, IMO. The online ECMAScript reference is very good as well if you require a deep view of the language.

I've written thousands of lines of Javascript code, and maintained a huge commercial site written entirely in Javascript, on both the server and the client (yeah, I know... it was ugly)

---------------------------
Randy
www.txphotoblog.com

Last edited by RKEnnis; 03-31-2010 at 12:44 AM..
Reply With Quote
  (#5) Old
Uber Poster
 
ngoduyviet's Avatar
 
Posts: 2,826
Join Date: May 2006
Location: Stafford, Texas
Real First Name: Viet
Camera: Any
Can Others Edit My Photos: Yes
iTrader Rating: 35

Likes Received LIKES Received: 29
Likes Given LIKES Given: 1
Send a message via Skype™ to ngoduyviet
03-31-2010, 12:46 AM


Quote:
Originally Posted by RKEnnis View Post
Strongly agree with the "O'Reilly Javascript Definitive Guide" recommendation! It's the javascript bible, IMO.

I've written thousands of lines of Javascript code, and maintained a huge commercial site written entirely in Javascript, on both the server and the client (yeah, I know... it was ugly)
Server side javascript? you mean servlet? yah that is ugly, and I don't envy you :)

I 3rd that O'reilly book. Also, learning any scripting or programming language is faster if you start practicing it. Make up a small project for yourself and implement it with your language of choice.

W3 has a pretty good tutorial section for javascript with an editor that you can use if you don't want to write it in notepad and execute with your browser.

---------------------------
Blog
Reply With Quote
  (#6) Old
Senior Member
 
dryicerx's Avatar
 
Posts: 408
Join Date: Feb 2009
Location: Austin, TX, Texas
Real First Name: J
Camera: Canon
Can Others Edit My Photos: Yes
iTrader Rating: 0

Likes Received LIKES Received: 0
Likes Given LIKES Given: 0
03-31-2010, 02:53 AM


Quote:
Originally Posted by ngoduyviet View Post
Server side javascript? you mean servlet? yah that is ugly, and I don't envy you :)
haha, so true, I doubt anyone wanting to keep their sanity using Servelets :p But there's a new wave of new server side JS usages thanks to the v8 engine, such as Node.js and for things like running db-side code in MongoDB <3

I am not a big fan of js, but the v8 engine makes it so damn fast, it's actually a fitting usage.

Last edited by dryicerx; 03-31-2010 at 02:56 AM..
Reply With Quote
  (#7) Old
Forum Regular
 
RKEnnis's Avatar
 
Posts: 940
Join Date: Mar 2006
Location: San Antonio, Texas
Real First Name: Randy
Camera: Nikon
Can Others Edit My Photos: Yes
iTrader Rating: 1

Likes Received LIKES Received: 3
Likes Given LIKES Given: 3
03-31-2010, 10:43 AM


Naw, what we were doing wasn't even as "glamorous" as servlets - we were basically doing legacy ASP code using JavaScript on the server side instead of VBScript. Lots of ADO calls to various flavors of relational DMS. I was on a team of folks maintaining over 500mb of javascript source code. That's a LOT of code!

That was "back in the day". Later on, we moved to using the WebSphere app server, and writing real java code (servlets /w the Struts framework). Even then, though I wrote a lot of javascript for the client side stuff, and all the ajax code...

Javascript is pretty easy to learn, but it also makes it easy to write code that is hard to maintain!

---------------------------
Randy
www.txphotoblog.com
Reply With Quote
  (#8) Old
Senior Member
 
dryicerx's Avatar
 
Posts: 408
Join Date: Feb 2009
Location: Austin, TX, Texas
Real First Name: J
Camera: Canon
Can Others Edit My Photos: Yes
iTrader Rating: 0

Likes Received LIKES Received: 0
Likes Given LIKES Given: 0
03-31-2010, 11:05 AM


Quote:
Originally Posted by RKEnnis View Post
Naw, what we were doing wasn't even as "glamorous" as servlets - we were basically doing legacy ASP code using JavaScript on the server side instead of VBScript. Lots of ADO calls to various flavors of relational DMS. I was on a team of folks maintaining over 500mb of javascript source code. That's a LOT of code!

That was "back in the day". Later on, we moved to using the WebSphere app server, and writing real java code (servlets /w the Struts framework). Even then, though I wrote a lot of javascript for the client side stuff, and all the ajax code...

Javascript is pretty easy to learn, but it also makes it easy to write code that is hard to maintain!
You have my sympathy for having to deal with that lol
Reply With Quote
Reply

Tags
book, javascript, recommendations

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Visit Our Sponsors
 

Google Sponsors

Premium Members do not see Google advertisements. SIGN UP today and help support our community.

Copyright ©2004 - 2011, Abel Longoria - www.Pixtus.com
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.