Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question

1 Answer

It started working after a while with no changes to the code not sure why.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.