angular-confirm
angular-confirm copied to clipboard
Error: [jqLite:nosel]

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 () {
}
},
})
Hey! I had the same issue. Try loading Jquery lib before any angular script.
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>