Austin
Austin

Reputation: 1

Is there a small css 1 javascript function/library to retrieve elements?

Also do you know of some useful javascript tutorials?

Also is there a tutorial that explains the jquery library line by line?

Upvotes: 0

Views: 42

Answers (3)

tvanfosson
tvanfosson

Reputation: 532455

Lots of information available at jquery.com, including How Jquery Works, a list of Tutorials, and the API documentation. For general javascript stuff, I find that w3schools.com has a lot of information on learning javascript, along with the ability to try things out yourself. JSFiddle can be useful for trying out code, including frameworks, as well once you have a better handle on what you're doing.

Upvotes: 3

Warty
Warty

Reputation: 7395

For the first question:
Look at document.getElementById, document.getElementsByTagName, and document.getElementsByName

Google is your friend, here...

I recommend you actually learn JavaScript, the magical language that is magical, before you start wandering into the realms of jQuery, as in my opinion, you should learn the basics before you have things become simplified for you.

I should note that I do not hate jQuery users, but I believe that learning simple/traditional DOM manipulation is important. Frameworks can come later.

Upvotes: 1

Shoaib Nawaz
Shoaib Nawaz

Reputation: 2320

Make a good understanding of Javascript to understand jQuery and other magic libraries.

Upvotes: 0

Related Questions