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.
Asked
Active
Viewed 654 times
2

Santosh Kumar
- 26,475
- 20
- 67
- 118

vetri02
- 3,199
- 8
- 32
- 43
2 Answers
-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
-
Francesco: it worked for me, and it might work for someone else too. So if you downvoted me, reconsider your vote. – lenooh Mar 09 '15 at 10:46
-
if it works for you... ok! we must consider zeroclipboard version too – Francesco Mar 10 '15 at 09:23