I’m not familiar with Javascript, and I have to convert a Project’s Javascript codes to Jquery scripts.
Of course I’m not project leader or something like it, I’m just elaborating that this process may has what kind of issues and may face with what kind of needness ?
So if you know any solution to convert Javascript Functions to Jquery ones please help me know what should be considered .
Adding jQuery to an existing project with JavaScript on it shouldn’t break any existing JavaScript unless you’re using a conflicting framework such as prototype, in which case you can often get away with both being present simply by setting jQuery to noConflict mode.
There’s certainly no need to rewrite working JavaScript functions into jQuery if they’re working fine as they are unless your primary goal is to improve efficiency / write shorter code or even if it’s simply because the JavaScript has become too cumbersome to maintain.
In summary if you just want to add some new jQuery functionality to a website; why not just add it and leave the existing JavaScript as is?