I have the following anchor element that when clicked should show a Twitter Bootstrap Popover:
<a href="javascript:void(0)" class="popover_toggle" title="View Image">View Image</a>
I also have the following javascript to attach the popover and set a default title for it:
$('.popover_toggle').popover({
title: 'Login Required!'
});
I would like the Popover to have the default title defined in the javascript "Login Required!", and not the title defined in the anchor element "View Image". How can I achieve that?