Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Practice exercises for learning jQuery [closed]

I'm picking up jQuery and jQuery UI and I would like some suggestions on some practice exercises for learning the libraries.

I'm particularly interested in Ajax and anything that might be a little bit .net centric.

I acknowledge that the jQuery web site has lots of simple examples showing how to use all the individual function calls, but I'm interested in seeing how they work with more practical examples.

like image 522
Vivian River Avatar asked Oct 18 '10 19:10

Vivian River


3 Answers

Games are always fun. I wrote a chess game to learn jQuery AJAX programming, which was complicated but cool. If you're looking for something simpler, perhaps Tic-Tac-Toe would be a good choice.

like image 58
Kaleb Brasee Avatar answered Nov 07 '22 11:11

Kaleb Brasee


Rading jquery official documentation, tutorials as well as deploying your own code, just start low and go slow, after all the bugs and doubts, tons of google searches and SO browsing you will be a guru. I think it is the best way, probably not the most productive. As someone said: the expert is one who had a lot of errors on the way and learnt from them.

So start coding now! If you want ajax: search for getJSON() function first, I think it is the best step to start learing client-server interaction.

PS: also some good javascript book is also good for you, whiule jquery allow a big deal of abstraction it is still based on javascript.

If you still want some links, here you go:

  1. Getting started with jquery
  2. Jquery for beginners
like image 28
Mike Avatar answered Nov 07 '22 13:11

Mike


A good way to pickup jQuery and AJAX is to just build websites. Setup a local web server with MAMP/WAMP/XAMPP and just start building / designing whatever kind of pages you want to.

If you're short on design inspiration, try to reverse engineer existing websites / web apps without looking at source code.

like image 2
Moses Avatar answered Nov 07 '22 11:11

Moses