Thank you in advance for your help (for those who have the time and desire).
I wrote this script:
$(document).ready(function() {
$('.foliobtn').hide();
$('.folionamedate').show();
$('.foliobottom').mouseover(function() {
$('.foliobtn').show();
return false;
});
$('.foliobottom').mouseout(function() {
$('.foliobtn').hide();
return false;
});
$('.foliobottom').mouseover(function() {
$('.folionamedate').hide();
return false;
});
$('.foliobottom').mouseout(function() {
$('.folionamedate').show();
return false;
});
});
and put it on this page http://www.fraservalley-webdesign.com/portfolio/test.php .
It works, except that, of course, it shows / hides each element with the corresponding classes, and not just the one I am hanging over. I cannot unambiguously name each of them, since there will be dozens, and this will be database-driven content.
Does anyone know a simple way to isolate an element that I hang in a script?
It makes sense?