There's not a great way to prevent the flickering all together, but you can minimize it.
The problem is that in addition to whatever other bottlenecks you have, you have to download and parse a lot of javascript files first. Bootstrap-Select depends on Bootstrap which itself depends on jQuery. By the time all that javascript is loaded, the page is probably already rendered.
One thing you can do to minimize the flickering is to style the select
elements as similar to the final product as possible so they take the same amount of screen space. When the plugin loads, it will hide this control anyway and replace it with it's own implementation. Use the selector that you were going to pass into the selectpicker()
function and style like this:
<!-- language: lang-css -->
.selectpicker {
width: 220px;
height:34px;
margin-bottom: 10px;
}
##Working Demo in fiddle
Note: I've intentionally delayed the load time by using setTimeout
so the difference is more noticeable.
<!-- language: lang-css -->
setTimeout(function() { $(".selectpicker").selectpicker(); }, 500);
If that's really still not acceptable, you can display a loading graphic until the page is fully loaded.
Adapted from Loading screen example:
Add this to your HTML:
<!-- language: lang-html -->
<div id="loader"></div>
Style it like this in CSS:
<!-- language: lang-css -->
#loader {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('http://i.imgur.com/ntIrgYXs.gif') 50% 50% no-repeat grey;
}
And remove it with the following JavaScript after you've loaded your page:
<!-- language: lang-js -->
$("#loader").fadeOut("slow");
##Working Demo Of Loading Screen In Fiddle