Se non dovesse funzionare il consiglio di Luca prova cosi questo blocco originale
codice:
$tabs.find('a').hover(function () {
clearTimeout(hoverIntent);
var el = this;
hoverIntent = setTimeout(function () {
$panels.hide().filter(el.hash).show();
}, 100);
}, function () {
clearTimeout(hoverIntent);
}).click(function () {
return false;
});
});
lo modifichi cosi:
codice:
$tabs.find('a').hover(function () {
clearTimeout(hoverIntent);
var el = this;
hoverIntent = setTimeout(function () {
$panels.hide().filter(el.hash).show();
}, 100);
}, function () {
clearTimeout(hoverIntent);
}).click(function () {
// togli il return false che blocca il click e gli inserisci il href
location.href='TUAPAGINADESTINAZIONE.xxxx';
});
});