bootsrap js slows down web page in IE

internet-explorer, performance, slowdown, twitter-bootstrap

Solution

I was using `jquery-1.8.1.min.js` in my application.

And I resolved my issue by just replacing `jquery-1.8.1.min.js` with `jquery-1.8.3.min.js`

Now its working fine in all browser including IE.

Problem

I have developed one page in my site using twitter bootstrap. In that I have included below mentioned js of bootstrap. ``` bootstrap-transition.js bootstrap-alert.js bootstrap-modal.js bootstrap-dropdown.js bootstrap-scrollspy.js bootstrap-tab.js bootstrap-tooltip.js bootstrap-popover.js bootstrap-button.js bootstrap-collapse.js bootstrap-carousel.js bootstrap-typeahead.js ``` This page is working fine in FF and chrome. when I open that page in IE and check any check box , it will take some time to check/uncheck that checkbox. and same thing happnes in case of dtropwown, it takes some time to expand/collapse dropdown. So I removed one by one all bootstrap js, it started increasing performance. and when all bootstrap js was removed it started working fine same as other browser. So is there any solution to solve this? Thanks in advance.

Original source