Activity Stream
48,167 MEMBERS
6707 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 5 of 32 FirstFirst ... 3456715 ... LastLast
Results 41 to 50 of 316
  1.     
    #41
    Member
    Website's:
    0DayBlog.com ParadiseW.net Blog4Whores.com FilmsTube.org
    Quote Originally Posted by smiling-dream View Post
    not working with wordpress blog i have tried in my blog http://smiling-dream.info
    PM me your MSN I will make it for you with TeamViewer
    Click me

    I'll upload for you(paid), PM me.

    I need payza2paypal exchanged(urgent!)

  2.     
    #42
    Member
    Lol @ this totally coming from my script. But whats the point of doing a new regex for each host? :/

    Just put them all in one group, ie (?:hotfile\.com|netload\.in)

    Also, you need to escape your dots in the regex...

    Why even release this nubby script, srsly?

  3.     
    #43
    Member
    Website's:
    0DayBlog.com ParadiseW.net Blog4Whores.com FilmsTube.org
    Don't like it don't use it, pls don't spam!

    I never saw your topic for this .
    Click me

    I'll upload for you(paid), PM me.

    I need payza2paypal exchanged(urgent!)

  4.     
    #44
    Member
    Could somebody help please?
    If I want a specify domain clickable but there's "http://anonym.to?" before the address using this script , how should I edit it?
    I try to use

    PHP Code: 
    newNode.innerHTML=text.replace(re_link8'<a href="http://www.anonym.to/?$1" target="_blank">$1</a>'); 
    And it fails, somebody helps me ? how to edit it? Thanks!

    Edit: Forgot to put a "}". Now finally works.

  5.   Sponsored Links

  6.     
    #45
    Member
    Website's:
    0DayBlog.com ParadiseW.net Blog4Whores.com FilmsTube.org
    Lot of filehosts added, enjoy!
    Click me

    I'll upload for you(paid), PM me.

    I need payza2paypal exchanged(urgent!)

  7.     
    #46
    Member
    Website's:
    UsersTracking.com WhatIsNanoSim.com TVShowsBB.com WhatIsSurfaceTablet.com WhatIsLoan.net
    Works great on Wordpress 3.0.1!

    Thanks!

    Regards.
    Nano Sim Cutter | TVShowsBB.com | UsersTracking.com - Online Visitor Counter
    WhatIsSurfaceTablet.com | What Is Loan

  8.     
    #47
    Member
    Website's:
    0DayBlog.com ParadiseW.net Blog4Whores.com FilmsTube.org
    Enjoy mates!
    Click me

    I'll upload for you(paid), PM me.

    I need payza2paypal exchanged(urgent!)

  9.     
    #48
    Banned
    Website's:
    SmartWarez.org SwoImage.com MazaOnline.com
    if we only want HF + FS live links( Clickable), then how we will do it?

  10.     
    #49
    Bow Chicka Wow Wow!!
    Website's:
    scenerls.org wrz.co
    remove other links part.

  11.     
    #50
    Member
    Website's:
    0DayBlog.com ParadiseW.net Blog4Whores.com FilmsTube.org
    Quote Originally Posted by SmartWareZ View Post
    if we only want HF + FS live links( Clickable), then how we will do it?
    Code: 
    jQuery.fn.textNodes = function() {
        var ret = [];
        this.contents().each(function() {
            var fn = arguments.callee;
            if(this.nodeType == 3) {
                ret.push(this);
            } else if(this.nodeType==1 &&!(
            this.tagName.toLowerCase()=='script' ||
            this.tagName.toLowerCase()=='head' ||
            this.tagName.toLowerCase()=='iframe' ||
            this.tagName.toLowerCase()=='textarea' ||
            this.tagName.toLowerCase()=='option' ||
            this.tagName.toLowerCase()=='style' ||
            this.tagName.toLowerCase()=='title' ||
            this.tagName.toLowerCase()=='a')){
                jQuery(this).contents().each(fn);
            }
        });
        return ret;
    }
    
    jQuery.fn.hfautolink = function() {
        re_link2 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:hotfile.com)[-()A-Z0-9+&@#/&#37;?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
        re_link3 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:hotfile.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
        re_link4 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:fileserve.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
        re_link5 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:fileserve.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
    
        this.each(function(i){
            jQuery.each($(this).textNodes(), function(i, node){
                text = node.nodeValue;
                if(re_link3.test(text)){
                    newNode=document.createElement('span');
                    text=jQuery('<div/>').text(text).html();
                    newNode.innerHTML=text.replace(re_link2, '<a href="$1" target="_blank">$1</a>');
                    node.parentNode.replaceChild(newNode, node);
                }
                else if(re_link5.test(text)){
                    newNode=document.createElement('span');
                    text=jQuery('<div/>').text(text).html();
                    newNode.innerHTML=text.replace(re_link4, '<a href="$1" target="_blank">$1</a>');
                    node.parentNode.replaceChild(newNode, node);
                }
    
            });
        });
    }
    
    $(function() {
        $("div").hfautolink();
    });
    Click me

    I'll upload for you(paid), PM me.

    I need payza2paypal exchanged(urgent!)

Page 5 of 32 FirstFirst ... 3456715 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Make the links under BBcode clickable?
    By PlusOne in forum vBulletin
    Replies: 1
    Last Post: 26th Apr 2011, 06:06 PM
  2. Replies: 40
    Last Post: 5th Mar 2011, 10:30 PM
  3. Make links clickable.
    By happyvalentine in forum Technical Help Desk Support
    Replies: 3
    Last Post: 17th Feb 2011, 11:49 AM
  4. How to make Clickable Hf Links?
    By Itkraze in forum vBulletin
    Replies: 2
    Last Post: 10th Feb 2011, 02:52 PM
  5. [Hiring] Make Links Clickable
    By Dj Mad in forum Completed Transactions
    Replies: 0
    Last Post: 28th Jul 2010, 12:46 AM

Tags for this Thread

BE SOCIAL