Learning Javascript and Frameworks getting in the way (JQuery)

Associate
Joined
1 Jun 2007
Posts
820
So Ive been trying to learn about JSONP and other features of Javascript but most of the examples I can find are all based on JQuery.

Is it just me are does anyone else find it annoying when your trying to learn something and all you can find are examples using frameworks. I personally prefer looking at what goes on under the hood, not abstract functions which some else has wrote.
 
Soldato
Joined
12 May 2007
Posts
3,896
Location
Bristol
Is it just me are does anyone else find it annoying when your trying to learn something and all you can find are examples using frameworks. ...

Can you not just Google the native JS equivalent.
In the case of a jQuery orientated JSONP tutorial, the only real difference should be the actual ajax request and the parsing of any data. Both of which are easy to find pure JS tutorials on.

If you're wanting to learn pure JS, I'd strongly suggest a tutorial site like tuts+, some books, or free resources, such as http://eloquentjavascript.net/.
 
Back
Top Bottom