site-media/scripts/print-links.js @ ae2856e8f8dc

Split the projects by type really fast.  This can be done better.
author Steve Losh <steve@stevelosh.com>
date Fri, 21 Aug 2009 18:29:07 -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'));
        });
    });
});