The Bootsrap-select plugin is amazing (http://silviomoreto.github.io/bootstrap-select/). It provides an extremely easy way of creating gorgeous select menus in Bootstrap. The one problem I've encountered with it, however, is "flickering" on page load. What I mean by this is fairly straight forward:
So, the user first sees the HTML select element and then sees it switch to the pretty Bootstrap-select item, thus the "flickering".
Has anyone found a good solution to the problem?
To show a blank until bootstrap-select is loaded, add this to your css.
select {
visibility: hidden;
}