This repository is no longer maintained.
This is a JQuery plugin for annotating links in a web app that is incomplete or undergoing development.
It adds lightbox style popups for links with the class annotation.
##HTML
- bbc.co.uk - just a link
- This is a description of this link wordpress.com - plus description
- Use this when you a pointing at a placeholder notbeenbuiltyet.org - no link
##Javascript
jQuery(document).ready(function() {
$('a.annotation').each(function(index) {
$(this).linkAnnotator();
});
});