views:

574

answers:

1

I need Clipboard Copy functionality, even i m taking help from http://plugins.jquery.com/project/copy link but it is not working fine.

<li>
     <label class="FieldName">
       Url:
     </label>
     <a id="url" href="<%=Model.FinalPacketUrl %>" target="_blank">
        <%=Model.FinalUrl %></a> </li>
 <li>
     <label class="FieldName">
      Password:
     </label>
 <span id="pwd">
    <%=Model.FinalPassword %></span> </li>

This is my Jquery code.This is just only copy text not text value

  function CopyToClipboard() {
    var text = $("#url").attr("href") + "\n" + $("#pwd").html();
           $.copy(text);
        }

Please help me to fix this problem

A: 

You may want to try the following plugin:

http://plugins.jquery.com/project/clipboard

Arnaud Leymet

related questions