jackmoore / colorbox

A light-weight, customizable lightbox plugin for jQuery
http://www.jacklmoore.com/colorbox/
MIT License
4.75k stars 1.14k forks source link

How to change cursor to pointer #887

Open mpol12 opened 4 years ago

mpol12 commented 4 years ago

On page load I'm showing an image via colorbox which leads to a specific URL. When the cursor is over the image I want it to be a pointer. How do I do that??

$.colorbox({
     href:"/includes/colorbox_int_modal.php?pic",
     photo:true,
     maxWidth:"95%",
     maxHeight:"95%",
     closeButton:true,
     overlayClose:false,
     onComplete:function(){
          $("#cboxLoadedContent").click(function(){
               window.location.replace("https://www.imdb.com/title/tt10964992/");
          });
     }
});