angular-confirm icon indicating copy to clipboard operation
angular-confirm copied to clipboard

Error: [jqLite:nosel]

Open imanshu15 opened this issue 8 years ago • 2 comments

screenshot 8

I am getting this error when trying to call this

 $ngConfirm({
             title: 'Alert',
             icon: 'fa fa-info-circle',
             theme: 'supervan',
             content: '',
             animation: 'scale',
             closeAnimation: 'scale',
             buttons: {
                 ok: {
                     btnClass: "btn-blue",
                 },
                 close: function () {

                 }
             },
         })

imanshu15 avatar Sep 20 '17 08:09 imanshu15

Hey! I had the same issue. Try loading Jquery lib before any angular script.

tiagopassinato avatar Sep 21 '17 16:09 tiagopassinato

Fixed it for me

    <script src="lib/jquery.min.js"></script>
    <script src="lib/angular.js"></script>
    <script src="lib/angular-confirm/angular-confirm.min.js"></script>

tomchiverton avatar Sep 17 '19 15:09 tomchiverton