Bootstrap Jquery error

Asked

Viewed 110 times

1

I don’t understand why I get this error. I already entered all the scripts, and still nothing. I was reading that Bootstrap 3.3.7 should not work, but I need it for my tables and so on. someone can help me ? inserir a descrição da imagem aqui

  • 2

    Put jquery before bootstrap

  • solved, thank you !

  • Please do not add SOLVED in the question title, this site works different from forums, the "accepted" in one of the answers already shows that the doubt has been resolved.

  • but I don’t know where it is. You can tell me where it is.?

1 answer

2


The jQuery file should always come before any plugin that uses jQuery.

Moreover, the code order is fundamental in all programming.

<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="datetime-picker.min.js"></script>

And so on and so on...

  • 1

    Ahhhh, thank you !

  • If you helped him, please mark as solved.

  • 1

    Where do I do it? : p

Browser other questions tagged

You are not signed in. Login or sign up in order to post.