Text to be Linkified

It doesn't matter if the URLs included in the text have the schema included, as in http://www.google.com or not, as in www.planettelex.net . PT Linkify will also recognize IP addresses in links, such as ftp://127.0.0.1.

In addition to HTTP, HTTPS, and FTP URLs, PT Linkify will also recognize and link MAILTO links, such as: mailto:someone@email.com. Click the link above to see it in action!

Creates HTML links out of unlinked URLs in a selection of text.

Basic usage:

            jQuery(document).ready(function(){
                $(".selector").linkify();
            });
        
className
Stringlinkified

The CSS class to assign to links added by Linkify.

Linkify specifying the CSS class of added links.

                    $(".selector").linkify({ className: "myClass" });
                
target
String_self

The target to assign to links added by Linkify.

Linkify specifying the target of added links.

                    $(".selector").linkify({ target: "_blank" });
                
nofollow
Booleanfalse

Whether to add a nofollow relationship to links added by Linkify.

Linkify specifying whether to add nofollow to added links.

                    $(".selector").linkify({ nofollow: true });