PROBLEM
I want all the tooltips to appear on the screen when I hover over one of the .nav-fp circles. I am wondering if there is a way to do this without overloading the jquery.fullpage.js file.
WHAT DOES NOT WORK
I tried manually with the code below, but did not succeed:
$(function(eOut) {
$(".fp-tooltip").hide();
$("#fp-nav").hover(function() {
$(".fp-tooltip").show();
}, function(eOut) {
$(".fp-tooltip").hide();
})
});
source
share