We have an historical application on which we would want to add bootstrap.
The problem is that if we just add bootstrap.(css, js) in our application that uses jQuery and lots of old plugins and custom js/css, everything is broken (button, tabs, modal, alignment, etc etc etc).
We want to integrate bootstrap in an iterative way, starting with just some little elements (bootstrap progress bar in particular) and refactoring code step after step (for example switch to bootstrap buttons, then tab, etc).
I read http://getbootstrap.com/javascript/#js-noconflict but it seems that with that solution, I will have to explictly disable each bootstrap components one by one.
Is there a way to do the opposite, i.e add namespace for bootstrap components, or globally disable bootstrap (and only enable it on preciselly scoped places ?)
Thanks !