I can\'t seem to open this dropdown menu on page load. Can anyone help? Documentation on Bootrap 3 is here: http://getbootstrap.com/javascript/#dropdowns
I tried thi
try this :
$(function () { $('.dropdown-menu').dropdown('toggle'); });
Try this..
$(function () { $('[data-toggle="dropdown"]').dropdown('toggle'); });
Or you can use the button id like:
$('#dLabel').dropdown('toggle');