Hi there,
The code you posted below comes from my Beginning ASP.NET 4 book while you created this post in the Professional ASP.NET 4 book. But even in the Beginning book's downloadable files you won't find it, as the code is being replaced by a Watermark plugin later in Chapter 11.
That said, take a look at this:
Code:
$(this).parent().prev().text().toLowerClass().trim ();
which should be
Code:
$(this).parent().prev().text().toLowerCase().trim();
Cheers,
Imar