site-media/scripts/print-links.js @ 37bd34b1c710

Add aardvark legs to make the CSS stronger.
author Steve Losh <steve@stevelosh.com>
date Thu, 16 Jul 2009 18:39:14 -0400
parents 94edcb30827f
children (none)
$(document).ready(function() {
    $('p:has(a)').add('ol:has(a)').add('ul:has(a)').each(function() {
        var printing_links = $(this).find('a').clone();
        $(this).after(printing_links);
        
        printing_links.wrap('<li></li>')
                      .parent()
                      .wrapAll('<ul class="print-links"></ul>');
        
        printing_links.each(function() {
            $(this).after(': ' + $(this).attr('href'));
        });
    });
});