user1710796
user1710796

Reputation:

In what ways can I mix jQuery and vanilla JavaScript

I have a web application, written in vanilla JavaScript. I'd like to enhance it with jQuery animations and use a few features which I've found in various jQuery plugins, such as Uploadify. In what ways is it possible to mix jQuery into vanilla JavaScript? Will I need to use separate script tags or separate files? Can I simply insert lines of code written with jQuery syntax into sections of plain JavaScript?

Thanks

Upvotes: 2

Views: 1299

Answers (1)

Barmar
Barmar

Reputation: 781310

You don't have to do anything special. jQuery is just a library of Javascript functions and methods -- it is ordinary Javascript.

Upvotes: 2

Related Questions