How could I cause the mouse pointer to change from the
text select pointer to a hand when a user mouses over
text before clicking?
I’m working with this jQuery code…
$(document).ready(function() {
$('#ann').find('dd').hide().end().find('dt').click(function() {
var answer = $(this).next();
if (answer.is(':visible')) {
answer.slideUp();
} else {
answer.slideDown();
}
});
});
Rick
_______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/