0

enter image description hereenter image description hereHere is How I call my scripts file in html page but it doesn't load jequry.js or some other scripts correctly

<script src="/js/admin/jquery/jquery.js"></script>
<!-- jQuery UI 1.11.4 -->
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
<script>
$.widget.bridge('uibutton', $.ui.button)
</script>
<!-- Bootstrap 4 -->

<!-- AdminLTE App -->
<script src="/js/admin/adminlte.js"></script>
<script src="/js/admin/jquery.js"></script>
<!-- AdminLTE dashboard demo (This is only for demo purposes) -->
<script src="/js/admin/dashboard.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="/js/admin/demo.js"></script>
<script src="/js/app.js"></script>
3
  • your question need to more detail like error in console Commented Feb 3, 2020 at 8:31
  • Check if you are giving the correct path to your jquery.js and other files Commented Feb 3, 2020 at 8:37
  • in which folder is your html file? Commented Feb 3, 2020 at 8:45

2 Answers 2

1

in path "/js/admin/jquery.js" i not see a jquery.js file, pay attention that exactly your path must be ture, I think your jquery paht is "/js/admin/jquery/jquery.js"

Sign up to request clarification or add additional context in comments.

Comments

0

You Can do like that

<script src="{{ URL::asset('js/admin/adminlte.js') }}"></script>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.