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.