[jQuery] cluetip open on double click in FF
I am using cluetip on a link
<a id="new_addInquiry" href="javascript:void(0)"
href="my_link" rel="my_link" class="my_class" title="Add New">Add</a>
Link and href is right.The problem i am facing is when i click on the
link it opens the cluetip on double click instead of opening it in
single click.And this problem is there only in Firefox.
I am using it with livequery.Code is given below:
$("#new_addInquiry").livequery('click',function(event)
{
$("#new_addInquiry").cluetip(
{
local:false,
activation:'click',
sticky:true,
width:'400px',
height:'480px',
positionBy:'mouse',
closePosition: 'title',
closeText:'<img src="'+this_domain+'/images/cross.jpg" />'
});
});
Please help me out.