I have a small problem with a show and hide jquery. I was hoping someone could explain;
when you roll over image i want the btns to show and stay when you roll on the btns, (its currently flickering)
Also when you roll off the image btns go hide.
here is a demo http://jsfiddle.net/wdWWQ/
Thanks in advance ... Paul
code
/* PICTURE BTNS SHOW.
===================================================================*/
$(".show-pic-trigger").hover(function () {
$(".show-btns-pic").show();
}, function () {
$(".show-btns-pic").hide();
})