adding URL when visitors copies content

Discussion in 'HTML & Website Design' started by beingonforum, Feb 7, 2012.

  1. #1
    I visited this web site investopedia)dot)com and copied a content from the website to paste it on a word page. when I paste it the the url of the contact page is also was copied but I didnt copied it.


    visit investopedia and try to copy any thing
    what ever you copy, the page url come with it automatically.

    how is this done........I want to do the same on my blog
     
    Solved! View solution.
    beingonforum, Feb 7, 2012 IP
  2. Talish

    Talish Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try google this you may find ur answer there
     
    Talish, Feb 8, 2012 IP
  3. HostingLynx

    HostingLynx Active Member

    Messages:
    106
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    83
    Articles:
    10
    #3
    Browsing through google I found this for you tynt.com/ from webproworld.com/webmaster-forum/threads/115130-Adding-URL-when-a-user-copies-content
     
    HostingLynx, Feb 8, 2012 IP
  4. ajborrego

    ajborrego Guest

    Messages:
    54
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Yeah next t ime use Google , Google is so good for finding question answers you'd be suprised
     
    ajborrego, Feb 8, 2012 IP
  5. #5
    The only best solution to you. Use tynt publisher tools. Its free.
     
    zubizubi, Feb 12, 2012 IP
  6. spaculus

    spaculus Peon

    Messages:
    187
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    0
    #6
    go to the Google. It is the best friend to help you at 24x7...
     
    spaculus, Feb 14, 2012 IP
  7. beingonforum

    beingonforum Greenhorn

    Messages:
    66
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #7
    thanks a lot. to zubizubi and HostingLynx
    and ajborrego, what man...........telling me to search on google what you think I didn't tried that.
     
    beingonforum, Feb 14, 2012 IP
  8. Cola56

    Cola56 Peon

    Messages:
    92
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    If your blog is Wordpress,you can edit your single.php file from themes like blow.

    <script type="text/javascript">
    document.body.oncopy=function(){
    event.returnValue=false;
    var t=document.selection.createRange().text;
    var s="This article come from<?php bloginfo('name'); ?> <?php echo get_settings('home'); ?> , Original adress: <?php the_permalink() ?> ";
    clipboardData.setData('Text','\r\n'+t+'\r\n'+s+'\r\n');
    }
    </script>
     
    Cola56, Feb 14, 2012 IP