jQuery Clipboard Copy
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 %>开发者_Python百科" 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
You may want to try the following plugin:
http://plugins.jquery.com/project/clipboard
精彩评论