Emre
Well-known member
Hi, I will add a button for bbCode code shares. But I could not work the button.
for example;
I want to select the button code content and copy it automatically.
I used it like this.
javascript code;
Actually I want to do exactly the button used in google translate.
Thanks for your help!
for example;
I want to select the button code content and copy it automatically.
I used it like this.
CSS:
<div style="float:right;"><input type="image" value="Kopyala" src="/styles/default/xenforo/tseckopyala.png" /></div>
javascript code;
JavaScript:
<script>
function getData(element)
{
if (document.body.createTextRange) {
var range = document.body.createTextRange();
range.moveToElementText(element);
range.select();
} else if (window.getSelection) {
var selection = window.getSelection();
var range = document.createRange();
range.selectNodeContents(element);
selection.removeAllRanges();
selection.addRange(range);
}
}
</script>
Thanks for your help!