You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the most part jQuery is being used for selectors. While it is not the end of the world, it would be nice to not have to have a jQuery dependency on the library
The text was updated successfully, but these errors were encountered:
My understand though is that querySelector does not support 100% of the
selectors used by jQuery. We are also using attr( ) if memory serves and
some of the addClass/removeClass methods. Again nothing that can not be
done easily in HTML-5 evergreen browsers using modern JS but still some
effort to do it. I think it starts with an assessment of where the impacts
are and how to address them.
Correct that querySelector does not support all jQuery selectors but it does support all CSS selectors.
angular.element, without jQuery installed also supports addClass/removeClass and the attr function.
For the most part jQuery is being used for selectors. While it is not the end of the world, it would be nice to not have to have a jQuery dependency on the library
The text was updated successfully, but these errors were encountered: