Twitter Bootstrap Dropdown with Tags Selector

drop-down-menu, javascript, jquery, stoppropagation, twitter-bootstrap

Solution

This works:

$('.dropdown-menu').on('click', 'li', function(event){...});

Updated jsFiddle

Problem

I have a question with Twitter Bootstrap, I'm using the Dropdown plugin and I'm trying to create a tag selector, I created an example in this link: http://jsfiddle.net/gatnc/ I've tried this: ``` event.stopPropagation; return false; ``` Does anyone have a better solution that does not close the dropdown when selecting a tag? Note: Click on "New Tag". Thanks!

Original source