It is a common practice in CSS to use {cursor: hand; cursor: pointer} for cross-browser reasons. How would you achieve the same effect using jQuery? If you do $('#foo').css({cursor: 'hand', cursor:'pointer'}); They are object keys and will clobber each other.
Thanks!
Why not just use
addClass?