Is it possible for jQuery to autopaste clipboard data on click a text input field? something like this:
<input type="text" name="auto" id="autoset">
And jQuery
<script>
$("#autoset").on("click",function(){
$(this).val(getClipboardData());
});
//OR
$("#autoset").on("focus",function(){
$(this).val(getClipboardData());
});
</script>
I mean, how do I write the getClipboardData() function.