function looks well-formed, but not working
Hi folks:
this function, from the head of the page,
- $(document).ready(function(){
- $('.hex').hover(function(){
- $(this).find('.hN').show();
- });
- $('.hex2').hover(function(){
- $(this).find('.hN').show();
- });
- });
should, when any one of the 64 figures in hovered over, make a number appear under that figure.
When you hover, the cursor becomes a pointer, so something's happening: but no number appears.
The 64 figures you can see are css ".hex"; there's another layer you can't currently see, which are css '.hex2', which the second part of the function refers to.