Archive for April, 2008

JQuery, highlighting table td cells by its value

By admin - Last updated: Monday, April 28, 2008

I was reading at JQuery and come up with a testing script for highlighting score cells according to the values within html table.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
    <script src=”../Scripts/jquery.js” type=”text/javascript”></script>           
           
    <script type=”text/javascript”>
        $(window).ready(function() {
    [...]