Используя инфраструктуру jQuery, вы можете сделать что-то вроде этого:
// define a hover event so that when you hover over and out of the dragable element
// the cursor changes accordingly
$('#element').hover(function(){
$(this).css('cursor','move');
} , function(){
$(this).css('cursor','default');
});
// this cursor property is only supported in mozilla, but here you can insert
// an image as other posters have specified
// this event changes the cursor when you click the dragable element
$('#element').mousedown(function(){
$(this).css('cursor','-moz-grabbing');
});
// this event changes the cursor back to the default type after you let go
// of the dragable element
$('#element').mouseup(function() {
$(this).css('cursor','default');
});
В качестве живого примера проверьте это: http://jsfiddle.net/EaEe3/ Дайте мне знать, если вам нужна дополнительная информация.Надеюсь, это поможет.