score:9

Accepted answer

Bootstrap 3.3.7 now supports jQuery 3+.

score:0

Adding the following to the top of the bootstrap.min.js file and tweaking the isFunction condition worked for me.

function isFunction(func){
    return typeof func === "function";
}

And then, still in bootstrap.min.js, find:

a.isFunction

and replace with:

isFunction

Related Query

More Query from same tag