Hi all!
This is embarrassing, but here goes. Here's the page that I'm working on: www.mchenry.edu/administration/BoardSchedule.asp
I'm using jQuery ver. 1.3.1 and I'm putting tiger stripes on the table. All is well. However, I want to insert a FileInfo class after all .pdf file extensions in the document, so users know they are selecting a PDF. Here's my little fileinfo.js jQuery snippet:
$(function(){
$('<span class="FileInfo"> PDF </span>').insertAfter('li a[href$=.pdf]');
});
Why isn't it working? Is it something silly? This snippet works on other pages, just not here. What's going on?
Thnx.