Amorale 28 Posted October 13, 2015 Report Share Posted October 13, 2015 Ищу плагин вп, который автоматически добавляет ссылку на статью, если у меня кто-то скопирует текст. Не подскажите, искал в гугле, не то выводит. Quote Link to post Share on other sites
Administrators DevilStar 1169 Posted October 13, 2015 Administrators Report Share Posted October 13, 2015 Никаких модулей, вот скрипт: <script type="text/javascript"> function addLink() { var body_element = document.getElementsByTagName('body')[0]; var selection; selection = window.getSelection(); var pagelink = "<br /><br /> Источник: <a href='"+document.location.href+"'>"+document.location.href+"</a><br /> "; //site.com var copytext = selection + pagelink; var newdiv = document.createElement('div'); newdiv.style.position='absolute'; newdiv.style.left='-99999px'; body_element.appendChild(newdiv); newdiv.innerHTML = copytext; selection.selectAllChildren(newdiv); window.setTimeout(function() { body_element.removeChild(newdiv); },0); } document.oncopy = addLink; </script> вместо site.com - свой сайт. Amorale 1 Quote Link to post Share on other sites
Amorale 28 Posted October 13, 2015 Author Report Share Posted October 13, 2015 Никаких модулей, вот скрипт: <script type="text/javascript"> function addLink() { var body_element = document.getElementsByTagName('body')[0]; var selection; selection = window.getSelection(); var pagelink = "<br /><br /> Источник: <a href='"+document.location.href+"'>"+document.location.href+"</a><br /> "; //site.com var copytext = selection + pagelink; var newdiv = document.createElement('div'); newdiv.style.position='absolute'; newdiv.style.left='-99999px'; body_element.appendChild(newdiv); newdiv.innerHTML = copytext; selection.selectAllChildren(newdiv); window.setTimeout(function() { body_element.removeChild(newdiv); },0); } document.oncopy = addLink; </script> вместо site.com - свой сайт. Спасибо бро, а куда его вставлять? В шапку или в боди? Quote Link to post Share on other sites
Administrators DevilStar 1169 Posted October 13, 2015 Administrators Report Share Posted October 13, 2015 У меня перед </body> Quote Link to post Share on other sites
saskozp 205 Posted October 13, 2015 Report Share Posted October 13, 2015 от себя добавлю, все это баловство и только отталкивает пользователей. Особенно раздражает такая функция на сайтах с примерами кодов, копируешь, вставляешь в блокнот, а там еще мусор в придачу! Это абсолютно не нужная плюшка. Но это как говорится мое сугубое имхо. ArcisMD and campusboy 2 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.