JQuery
Jump to navigation
Jump to search
to merge with JS scripts
General
- jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.
Learning
- The Basics of jQuery February 28th 2012
- jQuery By Example - blog
- jQuery Fundamentals is designed to get you comfortable working through common problems you'll be called upon to solve using jQuery. To get the most out of this site, you'll want to read the content and try the various interactive examples. Each chapter will cover a concept and give you a chance to try example code related to the concept.
- http://ejohn.org/blog/selectors-in-javascript - history
- http://zeptojs.com/ - jqueryapi but lighter
News
- jQuery.Buzz() - Latest jQuery news & resources
API
- jQuery Annotated Source.
- jQAPI - Alternative jQuery Documentation.
- jQuery 1.8 API Cheat Sheet
- jQuery source viewer - check method implementations easier
- http://h3manth.com/content/native-js-jquery - basic alternative
Events
Development
var jq = document.createElement('script'); jq.src = "http://code.jquery.com/jquery-latest.min.js"; document.getElementsByTagName('head')[0].appendChild(jq); jQuery.noConflict();