Reputation: 5463
am currently studying jquery, can someone tell me the things that javascript native can do which jquery cannot ?
Upvotes: 2
Views: 284
Reputation: 630637
In short: nothing
jQuery is an abstraction layer on top of plain JavaScript, it is JavaScript, it just adds a bunch of shortcuts to common tasks, usually in a highly optimized and cross-browser way.
It doesn't take anything away, you can mix and match all you want, jQuery simply adds to your options.
I'd take a look at the jQuery getting started documentation for more questions you might have like this.
Upvotes: 7
Reputation: 2845
None i think. But there maybe some things that jQuery can do but JavaScript cannot.
Upvotes: 0
Reputation: 888293
jQuery is a library for Javascript which adds additional features.
It doesn't replace anything.
Upvotes: 0