Yesterday I helped a colleague composing a new corporate website frontend heavily based on TwitterBootstrap.
There was a problem implementing a navigation menu with dropdown sub menus:
Dropdown’s items are not selectable on touch devices!
Surfing the web I found a lot of posts about this problem on stackoverflow and TW Git’s bug tracker… but no official solution is provided by TW team yet!
Hopefully I found a great post who provide a simple solution to this problem by adding a single line of code to the TwitterBootstrap’s dropdown javascript source!
// just append to link #142 of bootstrap-dropdown.js (2.2.1 branch)
.on('touchstart.dropdown', '.dropdown-menu', function (e) { e.stopPropagation(); })







