area.style.width = '2em';
area.style.padding = 0;
area.style.background = 'transparent';
+ area.setAttribute('readonly', '');
area.value = text;
document.body.appendChild(area);
- area.select();
+ var range = document.createRange();
+ range.selectNode(area);
+ var selection = window.getSelection();
+ selection.removeAllRanges();
+ selection.addRange(range);
if (document.execCommand('copy')) console.log('Copied bbcode to clipboard.');
else console.log('Failed to copy bbcode to clipboard.');
document.body.removeChild(area);