As I'm still learning, this question might seem to be very simple to answer, but I still need to ask.
How do I need to change this script, so it will not display all the tooltips?
What is happening now is whenever I hover on .pink-nose a
all the .tooltip
are fading in at this same time
$(function(){
var pn = $('.pink-nose a')
var tp = $('.pink-nose .tooltip')
tp.css({'display':'none'})
pn.mouseover(function(){
tp.fadeIn()
})
})
Thank you for your help in advance