I am Struggling to create a selection set to pass through to a zeroclipboard client to copy the contenst of the various html elemnts in a basically formatted form. I can pass through text to the client directly from the variable (var myTextToCopy = "Hi, this is the text to copy!";) but cannot get the text content of html elements to work.

Can someone pint out where I am going wrong?

   <script language="JavaScript">
            var clip = new ZeroClipboard.Client();
var myTextToCopy = $(".sideInfo ul:first-child").text() + "\r\n" + $(".sideInfo ul:nth-child(2)").text() + "\r\n" + $(".sideInfo ul:nth-child(3)").text() + $('.description').text();
            clip.setText( myTextToCopy );
            clip.glue( 'copyme' );
    </script>
Copy To Clipboard
<div class="sideInfo">    
  <ul>
    <li>Episode: x</li>
    <li>Production house: x</li>
    <li>Contacts: Tim nicebutdim<br><a href="mailto:nicebutdim@dot.com">nicebutdim@dot.com</a></li>
  </ul>
</div>
Text text texttext
text text text
link|improve this question
feedback

1 Answer

Instead of

clip.setText( txt );

use

clip.setText( myTextToCopy );

Then try to use

clip.setText($(".sideInfo").text());

Finally add this around your code

$(document).ready(function() {

// your code

)};
link|improve this answer
that was just a typo - I don't seem to be getting anything passed to the myTextToCopy variable – bobbobbob Jan 26 '11 at 10:55
I have tried that to no effect - I have added an alert for the myTextToCopy variable and it is coming back blank. Is the JQuery passed to that variable correctly written? – bobbobbob Jan 26 '11 at 11:12
Had a typo in the 3rd line, try again please. – powtac Jan 26 '11 at 11:14
I spotted that one already - here is my example itv-creative.com/jQueryCTC/pc3.htm – bobbobbob Jan 26 '11 at 11:25
Awesome - thanks. Its the simple bits I miss. – bobbobbob Jan 26 '11 at 11:45
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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