site-media/scripts/print-links.js @ ebf95aec0279
Add a meta element to specify the charset as UTF-8.
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Thu, 18 Jun 2009 01:48:05 -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')); }); }); });