I'm currently attempting to trigger a Bootstrap popover only on the hovered element. Unfortunately it's triggering on all that are on the page. Below is the Backbone script (in CoffeeScript):
Site.Views.Stories ||= {}
class Site.Views.Stories.IndexView extends Backbone.View
template: JST["backbone/templates/stories/index"]
initialize: () ->
@options.stories.bind('reset', @addAll)
addAll: () =>
@options.stories.each(@addOne)
addOne: (story) =>
view = new Site.Views.Stories.StoryView({model : story})
@$("#columns").append(view.render().el)
render: =>
$(@el).html(@template(stories: @options.stories.toJSON() ));
@addAll()
return this
events: =>
"mouseover .rating" : this.showhover
showhover: =>
this.$('.rating').popover('show');