tot - jquery/jquery.extlink.html
Not logged in
[Browse]  [Directory]  [Home]  [Login
[Reports]  [Search]  [Timeline
  [Raw
jquery/jquery.extlink.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <title>jQuery External Link Annotation Plugin Demo</title>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <script type="text/javascript" src="http://jquery.com/src/jquery-latest.pack.js"></script>
        <script type="text/javascript" src="jquery.extlink.js"></script>
        <script type="text/javascript">
            $(document).ready(function () {
                $(this).extlink("grey");
            });
        </script>
    </head>
    <body>              
        <h1>jQuery External Link Annotation Plugin Demo</h1>

        <a href="foo.html">foo.html</a>
        <a href="http:bar.html">http:bar.html</a>
        <a href="http://www.example.com/">http://www.example.com</a>
        <a href="foo.html">foo.html</a>
        <a href="https:bar.html">https:bar.html</a>
        <a href="https://www.example.com/">https://www.example.com</a>
        <a href="ftp://ftp.example.com/">ftp://ftp.example.com</a>
        <a name="foo">foo</a>
        <a name="bar">bar</a>
    </body>
</html>