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