This is the following http://jsfiddle.net/coderslay/enzDx/
I am trying to change the text Select as soon as an item is clicked
So if i selec
HTML:
Select One Two Three
JavaScript:
$('.dropdown-toggle').dropdown(); $('#divNewNotifications li > a').click(function(){ $('#text').text($(this).html()); });
DEMO
I have just added a span around the Select text in html to do the Javascript code simpler.
Select