I'm working on copy to clipboard using the zeroclipboard api,. I made a simple test page with an HTML anchor as follows:

<a href="#" id="copy" >copy</a>

By clicking on copy link, the text is copied to clipboard, all js events are firing and are being logged properly into the console, but when I change the example above to have an image inside the anchor for better user experience:

<a href="#" id="copy" ><img src="copy.gif" alt="copy"/></a>

...the code does no longer work and no events are fired.

link|improve this question

40% accept rate
Could it be that the img is receiving the click event rather than the link tag? Have you tried adding either ids or classes to the elements and testing where the click is going?? Also, are you looking to copy the alt text of the image to the clipboard, or the image itself?? – Nathan Oct 10 '11 at 13:15
feedback

1 Answer

up vote 1 down vote accepted

Set the image as the background image of the a element using CSS.

#copy {
    background-image: url('copy.jpg')
    display: block
    width: XXXpx
    height: YYYpx
}

You can use display: inline-block if you want the a element to behave more like a span.

link|improve this answer
Thanks it did worked for me, i wonder why it didn't came to my mind. I think GOD want you to help me.Thanks – Muhammad Haseeb Asif Oct 10 '11 at 14:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.