Possible Duplicate:
Jquery css: applying !important styles
I have the following code:
$("body")
.ajaxStart(function () {
$(this).css({ 'cursor': 'progress' })
})
.ajaxStop(function () {
$(this).css({ 'cursor': 'default' })
});
This works but not when I hover over a link where I have a hover and a different cursor. Is there a way that I can set the CSS cursor property above to important with jQuery>