I've puzzled over this for ages, but I can't seem to pinpoint how to make an .animate and a .fadeIn happen simultaneously, rather than consecutively.
So when I try it, the object fades in, and then moves, but I would LOVE to achieve something like this:
http://www.schoolwebsite.com/ - see the tooltips that appear on hovering social media icons at the bottom of the page for instance
See my bodged attempt below
$(".content_slider li a").hover(function () {
$(this).find('.hover_arrow').animate({
"bottom": "+=100px"
}, "fast").fadeIn('fast');
},function () {
$(this).find('div.hover_arrow').animate({
"bottom": "+=100px"
}, "fast").fadeOut('fast');
})
Any assistance is massively appreciated :)