Search code examples
jqueryshapesmouse-cursor

Jquery colorbox: change cursor from hand to pointer shape


How can the hand shape mouse pointer showing on mouse over of parent window be changed to a different pointer shape in jquery colorbox?


Solution

  • Following changes of cursor type in jquery.colorbox.js has resolved my issue

    $overlay.css({ "opacity": +settings.opacity, "cursor": settings.overlayClose ? "default" : "default" }).show();