I implemented a function to copy text to clipboard in HTML page using JavaScript. Is there any way to change the design of this prompt box, like make it smaller and change its positioning?
I'm open to suggestions of implementing this with jQuery, if this is possible...
I know that there are other questions similar to this, but they don't answer mine...
jsfiddle: https://jsfiddle.net/e9nt6xy5/
HTML:
<div id="test">Some text here</div>
JS:
function copyToClipboard(text) {
window.prompt("Copy to clipboard: Ctrl+C, Enter", text);
}
// Use JQuery
//
$('#test').click(function() {
copyToClipboard('bobo')
});