Cayde 6
Cayde 6

Reputation: 607

Is Twitter Boostrap 3.x compatible with Jquery 2.x?

I started using jquery 2.1.1 on a site that uses Bootstrap 3.x, and now bootstrap carousels won't work. Chrome web dev console says "Uncaught ReferenceError: jQuery is not defined "

Any help would be great!

Upvotes: 2

Views: 63

Answers (1)

Roger
Roger

Reputation: 3256

You have to Define JQuery.

Here is some code.

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>

Upvotes: 2

Related Questions