-1

Possible Duplicate:
Where can I find a tutorial to get started learning jQuery?

Considering I am new to jQuery technology, what is the best way to begin with it?

Community
  • 1
  • 1
girish
  • 701
  • 3
  • 12
  • 22
  • Related question: http://stackoverflow.com/questions/168802/where-can-i-find-a-tutorial-to-get-started-learning-jquery – rosscj2533 Dec 11 '09 at 21:03

8 Answers8

5

Visiting http://jquery.com/ and reading the tutorials is probably the best way to go. Google works really well too.

JasCav
  • 34,458
  • 20
  • 113
  • 170
3

When I first started I opened up notepad and put the following code in

<html>
    <head>                                                                  
        <script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>          
        <script type="text/javascript">                                         
            $(document).ready(function() {
                $("a").click(function() {
                        alert("Hello world!");
                    });
            });

        </script>                                                               
    </head>                                                                 
<body>                                                                  
   <a href="#" id="Test"></a>                                     
</body>                                                                 
</html>

After I got that working I visted Jquery.com and 1 by one tried each of the JQuery API reference sections and tried a few of them out. You can find those here http://docs.jquery.com/Main_Page

They have quite a lot of tutorials, however, I personally found it easier to just try things out for myself using the API reference. I also found cheat sheets like this one useful: http://net.tutsplus.com/freebies/cheat-sheets/jquery-cheat-sheet/

I then read these excelent tips: http://www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx

Then learn't to put a plugin together here: http://www.learningjquery.com/2007/10/a-plugin-development-pattern

Thats it really... In a nutshell that's how I learn't JQuery.

Martin Beeby
  • 4,523
  • 1
  • 26
  • 20
1

If you are new to jQuery, you'd best go to the jQuery website, and then read some jQuery tutorials.

And of course practice: just try it, jQuery is not very hard to learn, so just try to implement it in a website, and refer to the jQuery website or to SO to get help.

рüффп
  • 5,172
  • 34
  • 67
  • 113
Ikke
  • 99,403
  • 23
  • 97
  • 120
0

I would start with the JQuery Tutorial straight from the JQuery site

JaredPar
  • 733,204
  • 149
  • 1,241
  • 1,454
0

How jQuery Works

jQuery Tutorials

Mark Ursino
  • 31,209
  • 11
  • 51
  • 83
0

The docs are a great place to start. They have good examples of different functionality. jQuery Docs

rosscj2533
  • 9,195
  • 7
  • 39
  • 56
0

The first step might be to take a look at its documentation : it will allow you see what it can do, and the basics of the "how".

Pascal MARTIN
  • 395,085
  • 80
  • 655
  • 663
0

Some suggestions: - Try a few development environments and tools (IntelliJ, Firebug) - Write a todo application that beats mine :)

nes1983
  • 15,209
  • 4
  • 44
  • 64