Código
<script type='text/javascript'>
//<![CDATA[
function addLink() {
var selection = window.getSelection(),
pagelink = '<br /><br /> Fuente original: ' + document.location.href,
copytext = selection + pagelink,
newdiv = document.createElement('div');
newdiv.style.position = 'absolute';
newdiv.style.left = '-99999px';
document.body.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout(function () {
document.body.removeChild(newdiv);
}, 100);
}
docum
<script type='text/javascript'>
//<![CDATA[
function addLink() {
var selection = window.getSelection(),
pagelink = '<br /><br /> Fuente original: ' + document.location.href,
copytext = selection + pagelink,
newdiv = document.createElement('div');
newdiv.style.position = 'absolute';
newdiv.style.left = '-99999px';
document.body.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout(function () {
document.body.removeChild(newdiv);
}, 100);
}
docum
No hay comentarios:
Publicar un comentario
Deja tu comentario y en breve te contestaremos