I'm trying to implement zclip to copy input's content into clipboard. There is 20 text inputs on the page like this:
<input type="text" value="content to copy..." />
<input type="text" value="another content to copy..." />
And I came up with this jQuery code:
jQuery(function() {
jQuery("input[type=text]").click(function() {
var link = jQuery(this).val();
jQuery(this).zclip({
path: '/img/ZeroClipboard.swf',
copy: link
});
});
});
In the Javascript console I get this error: Uncaught TypeError: Property '$' of object [object DOMWindow] is not a function.
How can I get this working? Thx