Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Sam on Nov 13, 2008 09:50
open dhtmlx forum
call Javascript on mousehover in tabber.

I have a tabber via xml n which i want to call a javascript function i.e on mousehover

<tab id=\"190\" width='100px' height='17px' onMouseOver=\"AddShow()\" onMouseOut=\"AddHide()\" >Sample Text</tab>";

Is this thing possible.

Thanks

Sam

Answer posted by Support on Nov 13, 2008 10:19
There is no way to assign custom onMouseOver code in such way, but next will work

<tab id=\"190\" width='100px' height='17px' ><![CDATA[ <span onmouseover=\"AddShow()\" onmouseout=\"AddHide()\" >Sample Text</span> ]]></tab>";