+ 1
javascript has been giving me some problems. Is it possible to learn jquery instead of javascript or u have to know javascript
can I learn jquery instead of javascript
2 ответов
+ 1
The jquery is only a extending library for javascript. So you need to learn basics of javascript and its syntax before jquery.
Of course, the advantage is, you can save a lot of time without coding difficulty problems in javascript - just quickly use a prepared functions from jquery library to do it
+ 1
JQuery is library of JavaScript.It is fully depend on JS. You can read without JS but you will face lots of difficulty to learn jQuery. So first read JS than jQuery.
The jquery is only a extending library of javascript.
Like we write document.getElementById('DemoId');
In this we need to write more. In jQuery we can do in short form like this $('#DemoId');
In this case our file have less content. Our code run fast.