Topic: can i use mootools TIPS with each element of the Mif.tree?
Hi,
i need to apply a 'tip' (with mootools Tips) on 'mouseover' event to each node of the Mif.tree. It's possible? and how?
Thank you very much
You are not logged in. Please login or register.
Mifjs forum — Mif.Tree, Mif.Menu » Help » can i use mootools TIPS with each element of the Mif.tree?
Pages 1
Hi,
i need to apply a 'tip' (with mootools Tips) on 'mouseover' event to each node of the Mif.tree. It's possible? and how?
Thank you very much
u can add tips using hover event. Something like (it's just a code prototype, not a real example):
tree.addEvent('hover', function(node, target, state){//target=name|icon|gadjet|node, state=over|out
if(target=='name' && state=='over'){
showTip(node)
}
if(target=='name' && state=='out'){
hideTip(node)
}
})i can create small demo later if it's neccesary
Thank you again! bye
I am not able to add Mootool Tips to node. It would be nice if you can give some working example.
Thanks
Posts [ 4 ]
Pages 1
Powered by PunBB