Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been working with bootstrap of late, Getting used to working with most of the available functions. I have the tool tip working at the moment, but only on hover... what I am trying to do is get the tooltip to acivate on the active input box. I have the following script in my head tags -

<script type="text/javascript">
    $("[rel=tooltip]").tooltip();
</script>

with these options on my element - data-placement="bottom" rel="tooltip" href="#" data-original-title="Tooltip on bottom" When I try and use

<!--<script type="text/javascript">
    $("[rel=tooltip]").tooltip('{trigger: "active", placement: "bottom"}');
</script>-->

The script fails... Any ideas how I could make the tooltip when the element is active.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.