site-media/scripts/print-links.js @ afec18ea1700
Remove extraneous feeds and bird feeder stuff.
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 18 Jun 2009 01:14:50 -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'));
});
});
});