why async defer is not used in jquery script add tag?
Is there a need of async ddefer in jquery script file?
This is because none of its function are in reference to HTML code we type in our window those are independent function which we can use for working in javascript
While in the case of any JS file we create we use certain elements with ID’s that are mentioned in our HTML file and so we need to first read the HTML file then work upon JS or else it gives unidentified error
Therefore there is no need to put async defer in jquery unlike our other JS files