Javascript Bible Update

Posted July 10, 2006 at 9:15 AM

Tags: Javascript / DHTML, Books

Just rounded page 700 in the Javascript Bible. So far, I have been half skimming, half reading the chapters. It's mostly review for me at the moment. I have picked up one or two tid bits that I didn't already know. I am excited to eventually get to the Style sheet stuff. I have never altered a style sheet rule via Javascript. I have altered styles on an object, but I think it would be interesting to mess with the style definitions.

I have to say though, the Javascript Bible is extremely comprehensive. They really go through every single definition of every object in Javascript. And, what's really nice is that they show the compatibility of different methods and properties across the main browsers (including what versions introduced what features ex: WinIE4+, MacIE-, NN4+, Moz+, Saf-).

At the moment, I am not sure if the book is worth reading for a veteran web developer. But, then again, I do have 400 more pages to go.

Post Comment  |  Ask Ben  |  Permalink  |  Print Page




Reader Comments

Aug 31, 2006 at 9:44 AM // reply »
8 Comments

That's interesting that you are reading it cover to cover and have found the process beneficial. I usually stay away from the bible style tech books, seeing them as more of a reference that I could just Google info. for instead. Maybe this one is different.

By far the best JS book I've come across is 'Javascript for Web Developers' by Nicholas Zakas. Very instructional, very inspiring.


Aug 31, 2006 at 10:00 AM // reply »
1 Comments

Student Organization Guy,

The Javascript Bible is by FAR a reference book + explanation. I have actually stopped at about page 800 (to be continued when I have more time). It is very dry. That is not to say it is not very good.

I agree that you can google most things. The problem I find is that I can only google what I know or can describe. When I read a book like the Javascript Bible, I am waiting for that "Ooh Ahhh" moment where I see something I have never seen before, or would have never thought to even Google. So far, it's pretty much review, but you never know.


Aug 31, 2006 at 12:40 PM // reply »
8 Comments

Good call. I remember the first time I needed to use a closure, the problem was I didn't know the concept existed and that it had a name. I'm sure going through a book like that will help fill in all your gaps.

Enjoy :)


Aug 31, 2006 at 1:09 PM // reply »
74 Comments

SOG,

Yeah, actually closure is a really crazy thing if you are not in the mind set to think about it. I had a "closure" eureka moment a few months ago and it still confuses me occationally.


Dec 26, 2006 at 8:20 PM // reply »
2 Comments

Thank you for this support. It's clear, concise and helpful.


Dec 23, 2007 at 9:23 AM // reply »
1 Comments

anyway it sounds interesting, i think i have to get the time to read it too. btw. i`m no veteran so it would be very usefull ;)


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »