Title: Text pointer to hand pointer on MouseOver...

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?

Im 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/

Reply via email to