2👍
✅
You have 3 '.dropdown-toggle'
links in your code. You can toggle one of them at a time:
$(document).ready(function () {
$('.dropdown-toggle').eq(0).dropdown('toggle');
});
Working fiddle: http://jsfiddle.net/hieuh25/fzNjJ/
Source:stackexchange.com