2

I am using ZeroClipboard.js. The cursor pointer (hover effect) doesn't come to the copy link at the page load it shows only cursor arrow, only if you interact on page somewhere and go to link again then you see the pointer. Anybody seen this issue, has a solution for fixing it to show pointer on load itself.

Santosh Kumar
  • 26,475
  • 20
  • 67
  • 118
vetri02
  • 3,199
  • 8
  • 32
  • 43

2 Answers2

-1

With this css:

 .zeroclipboard-is-hover { cursor:pointer; }
Francesco
  • 1,128
  • 12
  • 22
-2

You didn't say what your setup is. Try with:

 var clip = new ZeroClipboard($("#your-copy-button-id"));
 clip.setHandCursor(true);

or use css:

#your-copy-button-id {
    cursor: pointer;
}
lenooh
  • 10,364
  • 5
  • 58
  • 49