Can I put a link in the boot popover?

I would like to do something like this:

  $('.UofTennesseeKnox').popover({
    'selector': '',
    'placement': 'bottom',
    'title': '<a href="home.html">University of Tennessee-Knoxville</a>',
    'content': 'Facilities Services Department 2233 Volunteer Boulevard, Room 203 Knoxville, TN 37996-3010',
  });

      

but the whole "title" value appears on the page, including the tags. Is there an easy way to do this, or do I need to use a different popover script?

+3


source to share


1 answer


      $('.UofTennesseeKnox').popover({
        'selector': '',
        'placement': 'bottom',
        'title': '<a href="home.html">University of Tennessee-Knoxville</a>',
        'content': 'Facilities Services Department 2233 Volunteer Boulevard, Room 203 Knoxville, TN 37996-3010',
        'html': 'true'
      });

      



Duh .....

+5


source







All Articles