This works:
$(\'.overdue\').addClass(\'alert\');
But this doesn\'t:
$(\'.overdue\').alert(\'Your book is overdue.\'); <
$(\'.overdue\').alert(\'Your book is overdue.\');
For each works with JQuery as in
$().each(function() { //this points to item alert(''); });
JQuery also, for a popup, has in the UI library a dialog widget: http://jqueryui.com/demos/dialog/
Check it out, works really well.
HTH.