I am trying to get the code below to work but it does not function in Google Chrome mobile for iPhone the background color just remains the same. It works in Chrome, IE, Safari for desktop and Safari, Opera, Photon for mobile. All the code does is change the class of the table row to give a blinking effect. The jQuery code is at the bottom of the page.
<!DOCTYPE HTML PUBLIC "-//W3C/DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Time Clock</title>
<script src="http://code.jquery.com/jquery-1.9.0.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<script src="jsFunctions.js" type="text/javascript"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<link media="Screen" href="timeCard.css" type="text/css" rel="stylesheet" />
<link media="only screen and (max-device-width: 480px) and (min-device-width: 320px)" href="mobile.css" type="text/css" rel="stylesheet" />
</head>
<body>
<?php
require 'DB.php';
try {
$stmt = $conn->prepare('SELECT * FROM equipment');
$stmt->execute();
} catch(PDOException $e){
echo'ERROR: ' . $e->getMessage();
}
echo "<table class='tableTwo'>
<tr>
<th>Equipment Type</th>
<th>Unit Number</th>
<th>Last Updated</th>
<th>Current Hours</th>
<th>Scheduled PM</th>
</tr>";
while($row = $stmt->fetch())
{
echo "<tr>";
echo "<td>" . $row['equipType'] . "</td>";
echo "<td>" . $row['unitNumber'] . "</td>";
echo "<td>" . $row['lastUpdate'] . "</td>";
if ($row['nextPM'] - $row['currentHours'] > 100) {
echo "<td class='good'>" . $row['currentHours'] . "</td>";
echo "<td class='good'>" . $row['nextPM'] . "</td>";
} else if ($row['nextPM'] - $row['currentHours'] <= 100 && $row['nextPM'] - $row['currentHours'] > 50){
echo "<td class='soon'>" . $row['currentHours'] . "</td>";
echo "<td class='soon'>" . $row['nextPM'] . "</td>";
} else if ($row['nextPM'] - $row['currentHours'] <= 50 && $row['nextPM'] - $row['currentHours'] > 10){
echo "<td class='bad'>" . $row['currentHours'] . "</td>";
echo "<td class='bad'>" . $row['nextPM'] . "</td>";
} else {
echo "<td class='overDue'>" . $row['currentHours'] . "</td>";
echo "<td class='overDue'>" . $row['nextPM'] . "</td>";
}
echo "</tr>";
}
echo "</table>";
?>
<script type="text/javascript">
var el = $('td.overDue');
setInterval(function() {
el.toggleClass('blinking');
}, 500);
</script>
</body>
</html>
Here is the CSS:
table.tableTwo td.overDue {
background-color:#44FF45;
}
table.tableTwo td.blinking {
background-color:#CC0000;
}