Copy text to clipboard from jsf / primefaces
问题 I am using https://github.com/patricklodder/jquery-zclip to implement copy to clipboard function. it should copy some text, but for now i want it to be anything really... but its not working at all. I included in head: <h:outputScript name="js/jquery.zclip.min.js" library="test" /> <script> $(document).ready(function(){ $('a#copy').zclip({ path:'#{resource['/test/js/ZeroClipboard.swf']}', copy:$('div#content').text() }); }); </script> and in JSF page i have an ordinary : <a href="#" id="copy"