top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to access jQLite or jQuery with AngularJS?

0 votes
256 views
How to access jQLite or jQuery with AngularJS?
posted Oct 4, 2017 by Sathaybama

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

jQuery lite or the full jQuery library if available, can be accessed via the AngularJS code by using the
element() function in AngularJS. Basically, angular.element() is an alias for the jQuery function i.e.

angular.element() === jQuery() === $()
answer Oct 4, 2017 by Shivaranjini
...