I\'d like to use a Twitter Bootstrap dropdown button:
Here is a working example of how you could implement custom functions for your anchors.
http://jsfiddle.net/CH2NZ/43/
You can attach an id to your anchor:
- Action
And then use jQuery's click event listener to listen for the click action and fire you function:
$('#alertMe').click(function(e) {
alert('alerted');
e.preventDefault();// prevent the default anchor functionality
});