I m asking a question very similar to this one—dare I say identical?
An example is currently in the bottom navigation on this page.
I m looking to display the name and link of the next and previous page when a user hovers over their respective icons. I m pretty sure my solution will entail binding or timers, neither of which I m seeming to understand very well at the moment.
Currently, I have:
$(document).ready(function() {
var dropdown = $( span.hide_me );
var navigator = $( a.paginate_link );
dropdown.hide();
$(navigator).hover(function(){
$(this).siblings(dropdown).fadeIn();
}, function(){
setTimeout(function(){
dropdown.fadeOut();
}, 3000);
});
});
with its respective HTML (some ExpressionEngine code included—apologies):
<p class="older_entry"><a href="{path= blog/ }" class="paginate_link page_back">Older</a><span class="hide_me">Older entry:
<br />
<a href="{path= blog/ }" class="entry_text">{title}</a></span></p>
{/exp:weblog:next_entry}
<p class="blog_home"><a href="http://joshuacody.net/blog" class="paginate_link page_home">Blog Main</a><span class="hide_me">Back to the blog</span></p>
{exp:weblog:prev_entry weblog="blog"}
<p class="newer_entry"><a href="{path= blog/ }" class="paginate_link page_forward">Newer</a><span class="hide_me">Newer entry:
<br />
<a href="{path= blog/ }" class="entry_text">{title}</a></span></p>
This is behaving pretty strangely at the moment. Sometimes it waits three seconds, sometimes it waits one second, sometimes it doesn t fade out altogether.
Essentially, I m looking to fade in span.hide_me on hover of the icons ( a.paginate_link ), and I d like it to remain visible when users mouse over the span.
Think anyone could help walk me through this process and understand exactly how the timers and clearing of the timers is working?
Thanks so much, Stack Overflow. You guys have been incredible as I walk down this road of learning to make the internet.