("#whatever").css("cursor","pointer")
Or put it in the CSS. whatever{ cursor: pointer }
Glen
On 11/13/06, Laurent Yaish <[EMAIL PROTECTED]> wrote:
try setting the CSS cursor property
http://www.w3schools.com/css/pr_class_cursor.asp
Laurent
On 11/13/06, Rick Faircloth < [EMAIL PROTECTED]> wrote: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/
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/
_______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/