views:

61

answers:

3

I want to get better at JQuery, but I don't know what type of application I should make to test my skills. What would you suggest that would not be too hard so I would get frustrated as a beginner.

Any help is appreciated.

Thanks!

(sorry if I sound like a noob, by the way =P)

+1  A: 

I would follow the tutorials on the jquery site, they are very good

tutorials

Pharabus
Came in here to suggest the same thing. +1
JasCav
A: 

This doesn't really answer your question, but may actually be helpful:
Why jQuery? What other JavaScript frameworks did you look at? Do you think, you have a good understanding of JavaScript at all?

While jQuery is not only popular, but also very good (two things that often exclude each other), I don't think it is a good way to start learning JavaScript.
The point of frameworks as jQuery is to prevent JavaScript developers of doing the same, stupid, dull, quirky JS-coding over and over again. However, I think before starting to use jQuery, you should first have a shot at that very stupid, dull and quirky work, to understand JavaScript and frameworks like jQuery.

Then, when you have made a project with classic JavaScript and HTML, try simplyfying and enhancing it using jQuery. jQuery has it's place, but as bobince elegantly put it, it is clearly overused, even in places where it's more complicated: http://www.doxdesk.com/updates/2009.html#u20091116-jquery

Now if you really do not want to fight the intricacies of DOM manipulation, I'd rather suggest pure JavaScript frameworks such as qooxdoo, which unlike jQuery doesn't simplify DOM manipulation, but rather promotes a clear, component based, object oriented and high level approach to creating JavaScript RIAs.

greetz
back2dos

back2dos
We should give the OP the benefit of the doubt; and yet, the overwhelming popularity of jQuery has apparently blurred this distinction for beginners. http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/2657095#2657095
harpo
A: 

It is VERY common to write a "tips" plugin - hence why there are many :) You have lots of examples to compare to, and can add "enhancements" to make it fancy to expand your skill set.

Mark Schultheiss