Get Good Script Books?

Apr 19, 2011

At present I am reading Javascript for Dummies, no-one tut please! Can anyone suggest a good beginners book for javascript that is easy to understand but allows progression from nothing to competent (graphics welcome); which includes everything.

View 4 Replies


ADVERTISEMENT

Good Books Or Information About DHTML Menu?

Jul 23, 2005

Could someone advises me some good books or information about DHTML menu?

View 1 Replies View Related

JQuery :: Good Web UI Component Libraries - Cross Browser Compatible And Have Good Documentation

May 10, 2009

Are there any good web UI component libraries -open source or commercial - that you can recomment? They need to be cross browser compatible and have good documentation. Jquery UI is very good but limited in number of controls it offers. YUI is very verbose and very hard to use. extJs only other one I can think of. Any others you use and like?

View 2 Replies View Related

If And Else - Display A Message Saying Good Morning If It Is In The Morning - Good Afternoon If It Is In The Afternoon

May 31, 2011

6. Display a message saying Good Morning if it is in the morning, Good Afternoon if it is in the afternoon, and Good Evening if it is in the Evening. This is my code:

[Code]....

View 1 Replies View Related

Books On Javascript

Jul 20, 2005

I want to learn javascript which books would this group recommend?

View 1 Replies View Related

Ajax Books

May 6, 2006

Im new to ajax and javascript (I have knowledge of ActionScipt, css, html, xml and php) so I wanna buy a good book for beginers. Do you know some title? I saw at amazon: Ajax in Action, Professional Ajax (Programmer to Programmer) and Foundations of Ajax (Foundation).

View 4 Replies View Related

What Books Cover Javascript?

Dec 5, 2006

The only book currently endorsed by c.l.j. regulars is:
javascript: The Definitive Guide, 4th Edition By David Flanagan
ISBN:0-596-00048-0 (Also by David Flanagan: JavaScript Pocket
Reference, 2nd Edition. ISBN 0-596-00411-7 for language and API
reference alone).

http://www.oreilly.com/catalog/jscript4/

View 3 Replies View Related

Best JavaScript Books And Sites

Sep 8, 2006

I recently launched a question answer site that connects people with
problems to those with solutions. We let people with problems pay
solution providers $0.25 for problems in over 100 categories.

As part of our service we let people review past problems and also
provide resources for their own research.

Can anyone tell me (in their opinion)?

What are the best three sites for javascript information?
What are the best three javascript books they own?

View 1 Replies View Related

Any Books For Object Oriented Javascript

Feb 15, 2006

Any websites or good books to learn real heavy object oriented javascript?

View 1 Replies View Related

Books / Video Tutorial About Learning JS?

Aug 24, 2009

Can someone tell me how to learn JS? Can you recommend me some books or video tutorials? What is the best?

View 2 Replies View Related

Any Articles Or Books Tell Internal Principle Of SetTimeout And SetInterval

Jan 17, 2011

I wanna get some deep information about how browser implements the dispatch mechanism of events , native setTimeout and setInterval. Any books or articles reference it?

View 2 Replies View Related

Embed Google Books Results For Search Term In Website?

May 10, 2011

I would like to embed the search results of the Google books search into my website. It should be like Google News elements widget supplied by google itself. I need to have results and not the custom search box.

View 2 Replies View Related

Create A Virtual Library - Make A Random Number Of Books Pop Out On Mouse Over?

Jun 7, 2011

I have a background that is a shelf full of books, I wanted to figure out what I would need to do in order to make a random number of books pop out on mouse over (individually), and upon click have the book pulled out and be flipped through and read like a book. Would I have to recreate the library picture completely to make the random books moveable? And would I have to create the books that I want to move from the bookshelf?

how to pull the book out from the book shelf so that it looks like it's coming towards me and then to make it look like it has been pulled out. Would I need to use animation for this? What would be the parts to the animation required?

A little background on my knowledge of javascript: I understand the concepts of it and can understand it when I read it or its explained to me. I am looking to create something as simple as I can, I thought having a background and something basic like a few books be able to pop out. When I realized css couldn't do this and css3 wasn't supported by most browsers I turned to javascript and have been trying to figure out the steps I would need to do to do this specifically.

View 2 Replies View Related

Program - User Must Enter Number Of Books And Price And Then Calculate The Total Cost Of Items

May 4, 2011

I have a program in which a user must enter number of books and price and then calculate the total cost of the items, i have tried and tried to get it working to no effect can anyone see where i have went wrong.

View 2 Replies View Related

How To Put Firebug To Good Use?

Nov 28, 2007

what do you use firebug for in connection with javascript?

Just want to explore new ways of using it.

Currently I use it to:

1. debug my scripts using console.log(), etc.
2. test small things in the built in 'live' console

View 2 Replies View Related

Good Javascript Editor

Mar 27, 2007

i want to download a free open source javascript editor :)

can anyone recommend a good one for me.. :) if you could recommend one that handles nodes and dom aspects that would be great

View 2 Replies View Related

Simple Good Old Rollover

Aug 16, 2002

I got a simple rollover with a little twist to it… and I have a little glitch.

The two only images that I am trying to get to swap are:

Button_on.jpg
Button_off.gif

That’s it. And it’s the same images for all 5 links

This means that …

all 5 links should start with button_off.gif. And any of the 5 links should swap to button_on.jpg when I get my mouse over it--while all others remain with button_off.gif.

The rollover works, but the only image that swap is on link #5. That is whether I bring my mouse to link #1 or link#2 or any other link. The only image that keeps swapping is link #5.

Check it out and try moving your pointer over the links and you’ll understand

MY TEMPLATE

Afterward, I’ll add text links above these rollovers using CSS. PS: is there a way to create a similar effect using CSS?

View 5 Replies View Related

Good Editor For Windows?

May 22, 2010

I want to know what is the best Javascript editor for Windows, that have a good syntax highlighting, IntelliSense(it's that technology of the menu when typing, like on Eclipse, but I can't remember it's correct name) and a class browser, what is very useful when you want to see the names of your classes and functions, also to browse on then.

View 1 Replies View Related

Get Good Script Tutorial?

Mar 9, 2010

I am a complete beginner to JavaScript (well I know this: document.write and alert) and I kneed a really good tutorial for beginners. Preferably free but I will pay up to �3 (not a lot I know but oh well)

View 1 Replies View Related

A Good JavaScript Reference Guide

Jul 23, 2005

I often use the HTML reference guide at Microsoft which is located
here: http://msdn.microsoft.com/library/d...ce/elements.asp

It gives a descriptions and examples of HTML elements. Can anyone
point me at any similar resources for Javascript?

View 2 Replies View Related

Good Way To Make Immutable Objects

Apr 8, 2006

I want to have some advice about immutable objects. I made a constructor.

function Point(x, y) {
this.x = x;
this.y = y;
}

This is a very simple one and now I want to make it immutable so that
once an object is created it cannot be modified.

I came up with 2 ways.

[1]
function Point(x, y) {
this.x = function() { return x; }
this.y = function() { return y; }
}

[2]
function Point(x, y) {
this.getX = function() { return x; }
this.getY = function() { return y; }
}

They are both immutable.
You can read x and y but cannot change them.

[1] is short and easy to use but sometimes likely to be error-prone
like
var p = new Point(2, 3);
var x = p.x; //should be p.x() instead of p.x

[2] is straight-forward but looks verbose.
I have to access the data like p.getX() .

Which way is more recommendable?
And is there a better way to make an immutable object?

View 3 Replies View Related

JQuery :: Good Pop Up Window Script?

Sep 22, 2009

Can anyone suggest to me a good jquery pop up window script.

View 3 Replies View Related

Looking For Good Lightbox / Slideshow Script

Jan 24, 2009

I was wondering are there any good slideshow scripts (transitioning image) which is also clickable into Lightbox?

View 4 Replies View Related

Good Snippet For Interactive Slider?

Jan 8, 2010

I'm looking for 5-radio button replacement. The user should be able to slide a slider between values from 0 to a 100. Text will appear under it that will say "I strongly agree" "I agree somewhat" "I am indifferent" "I disagree" "I strongly disagree" depending on the values of the slider (they should change in real-time). Unfortunately I do not have the skill to make one, especially one that has a good browser-compatibility. Does anyone know any good snippets? I'll keep searching on google and post back if I find one.

View 14 Replies View Related

Good Browser And OS Detection Code?

Jan 11, 2005

I am writing an application that (unfortunately) will work only with certain browsers and operating systems. Does anyone have a link to a good "browser/OS detection script"?

I'm looking for something simple that I can just include in each page of my html code, and us it like this:

if (! IE5.5+ for windows) {
fail
}

View 14 Replies View Related

Good Replacement For Select Element?

Jul 9, 2010

I was wondering if anybody knows of a good replacement for the select element. Maybe something using jquery?

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved