I want to show tab content on tab mouse over instead of tab click. How can I do it?
Page 1 / 1
Hi,
Yes its possible. Please add inline snippet :
(function(skuid){ var $ = skuid.$;
$(document.body).one(‘pageload’,function(){
$(“a”).on(“mouseover”,function(){
$(this).click();});
});
})(skuid);
It should work
In addition,
You can give css class to tab set in Tab Set properties and find “a” child elements.
for example :
$(“.PanelSetClass”).find(“ul”).find(“a”).on(“mouseover”,function(){ $(this).click();});
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.