colorbox
colorbox copied to clipboard
How to change cursor to pointer
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/");
});
}
});