I\'d like to use a Twitter Bootstrap dropdown button:
Twitter bootstrap is meant to give a baseline functionality, and provides only basic javascript plugins that do something on screen. Any additional content or functionality, you'll have to do yourself.
and then with jQuery
jQuery("#action-1").click(function(e){
//do something
e.preventDefault();
});