jQuery is a cross-browser Javascript library that provides abstractions for DOM traversal, event handling, animation, and Ajax interactions for rapid web development.
22
votes
11answers
10k views
How necessary is it to learn JavaScript before jQuery? [closed]
In my opinion, when I looked at JavaScript, it looked like not my cup of tea. When I came across jQuery, I loved it. I sat and watched Nettuts+ 15 days of jQuery screencasts, 1 year later and now I'm ...
26
votes
6answers
24k views
Advantages of using pure JavaScript over JQuery
What are the advantages of using Javascript-only versus using JQuery-only?
I have limited experience with JavaScript and JQuery coding. I've added bits and snippets of each to HTML pages but I've ...
18
votes
13answers
6k views
What benefits are there to native JavaScript development?
Given how much simpler jQuery development is, when compared to native JavaScript, what makes people forgo libraries like jQuery altogether?
Is this because jQuery has limitations or it is slow? I ...
10
votes
2answers
697 views
How can I use my coding skills for good?
By this autumn my two small websites should be generating around a total of $1200 a month with minimal/zero input which is enough to for me to live on comfortably enough.
Rather than embark on ...
7
votes
3answers
1k views
Benefits to starting JavaScript “for” loops at 0, or just traditional? [duplicate]
Possible Duplicate:
Defend zero-based arrays
I'm running code that loops through an array of HTML IDs.
With the HTML IDs named content1, content2, …, content12, my loop looks like:
for ...
30
votes
3answers
6k views
What does Douglas Crockford mean when he says jQuery doesn't scale?
In the Q&A section of this talk, Douglas Crockford says that jQuery doesn't scale as well as some other popular libraries. What does he mean by that, and what is it about the other libraries that ...
21
votes
5answers
2k views
How do I convince my boss (and other devs) to use/consider Unobtrusive JavaScript
I'm pretty new in our develepors team.
I need some strong arguments and/or "pitfall" examples, so my boss will finally understand the advantages of Unobtrusive JavaScript, so that he, and the rest of ...
1
vote
6answers
2k views
What is JQuery performance compared to YUI, Dojo and other frameworks? [closed]
I have been using JQuery for quite sometime now and I'm pretty much happy with the performance.
I'm just wondering if there is any performance comparison between jQuery, YUI, Dojo, Prototype, ...
13
votes
5answers
4k views
What are deferred callbacks?
I understand the idea of a callback, where I pass a function into another function and that function then uses the supplied function at will.
I am struggling to understand deferred callbacks, even ...
9
votes
6answers
1k views
How can I write HTML, CSS, and JavaScript to make back-end developers work easier?
When I get a design from a designer, I get it as a PSD (Photoshop) file. I always expect proper layer and folder names, basically a clean and managed PSD. From this desigbn I develop HTML, CSS and ...
7
votes
5answers
337 views
What do you do to make the client understand that requirements not mentioned in contract should be charged separately?
I've done a very small project for a specified amount of payment. The project was some client-side validation code. However, now client asks for code improvement (general code improvement including ...
6
votes
3answers
662 views
Is there a canonical book on creating highly interactive websites (eg. “Flash” like) with HTML5/CSS3/JS/jQuery? [closed]
I know some of the basics of these technologies already, but it is mostly limited to more static sites. Using things like HTMl5 semantic elements, CSS3 gradients, shadows, @font-face etc.
Is there a ...
5
votes
4answers
860 views
Is there a book for learning Javascript -> DOM -> jQuery? [duplicate]
Possible Duplicate:
The importance of javascript and the best way to learn it?
I would like to learn Javascript, the DOM model and jQuery.
I've found many recommendations for books for ...
3
votes
2answers
427 views
How is the speed of a page affected? [closed]
I am trying to develop a single-page web application. I was wondering how big the disadvantages of using jQuery are.
I have been told that it makes the application slower, but, as I have seen here, ...
3
votes
3answers
1k views
Is using Javascript/JQuery for layout and style bad practice?
Many, but not all, HTML layout problems can be solved with CSS alone.
For those that can't, JQuery (on document load) has become very popular.*
As a result of its ease, many developers are quick to ...
2
votes
3answers
1k views
How to handle large scale js+jquery projects using well written, Object-Oriented JavaScript and jQuery code?
I love the whole user experience/interface thing and put a lot of jQuery and JavaScript (pure JavaScript for HTML5 stuff, like canvas, file API, etc). The problem I face now is that my codes are ...
0
votes
3answers
161 views
When/Where to create/assign event handlers to its elements
Lets say I have the following code
// JS
$(function(){
$('[data-mc=logout]').click(function(){
if (!confirm(myconfig.msg['asklogout'])) {
return false;
...