To state the obvious, jQuery is great for beginners as it helps us write less code but it requires a large file to be referenced. I presume there is no tool to convert code written in jQuery to vanilla JavaScript. What is a good way to leverage my knowledge of jQuery to quickly write/generate vanilla JavaScript for complex scenarios?
Share
jQuery is a library, a collection of functions that helps to do complex stuffs simpler.
The code written in jQuery is plain vanilla javascript. You can look at their uncompressed source code
For starters, you can use this site jQuery Source Viewer to browser through any specific functions.