I want something like the Facebook actions tooltip, that you can see in Facebook when you want to delete any post from feeds. It gives you the options in the tooltip. So for this, I am working with the Tipsy widget of Yii.
I have implemented and it's normally working fine, but if I want to apply some options like DelayIn and DelayOut or Trigger mannual, it never has any effect...
An example of that I did:
<?php
$this->widget('application.extensions.tipsy.Tipsy', array(
'trigger' => 'manual',
'fade' => true,
'delayIn' => '5000',
'delayOut' => '1000',
'title' => 'Here to test',
'items' => array(
array(
'id' => '#element_id',
'gravity' => 'sw' ,
'fallback' => 'Put <i>custom</i> <strong>tooltip </strong> here.' ,
'html' => true,
),
),
));
?>
<div id="elemets">
<a original-title="testng title" rel="tipsy">This is Cool1</a>
<a href='#' onclick='$("#elemets a[rel=tipsy]").tipsy("show"); return false;'>Show</a>
<br />
<a href='#' onclick='$("#elemets a[rel=tipsy]").tipsy("hide"); return false;'>Hide</a>
</div>
How do I fix this problem?