Bootstrap Dropdown Open On Pageload
Ive got this dropdown styled with bootstrap: 15min
<li class="dropdown open">
That will do the trick.
<li class="dropdown open">
That will do the trick.
$(document).ready(function () {
$("#posuvnik").click();
});
There is probably a way to do it in straight CSS, but without seeing more of your code it's hard to know.
Post a Comment for "Bootstrap Dropdown Open On Pageload"