I have a working PHP site that pulls data from SQL and generates script for jQuery countdown.
I am attempting to make a mobile version of the site, by using jQuery Mobile. However, my attempt isn't going so great.
Please see: http://nexrem.com/dragontimer/testdir/mobile/
- Hit select server
- Select Isle of Janthir
- Select Tequatl the Sunless
- The page displays: http://nexrem.com/dragontimer/testdir/mobile/tequatl.html looks like this

However, if you now go to http://nexrem.com/dragontimer/testdir/mobile/getTimes.php?server=Isle%20of%20Janthir&dragon=1 (same parameters) you can see that it says "defeated" - where it would also otherwise display a timer.

When I look at the code of the mobile html file (tequatl.html) I can see that php data returned generated all proper javascript.
Here is the code for tequatl.html:
<!DOCTYPE html>
<html>
<head>
<title>GW2 Dragon Timer </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src='../js/jquery.jcountdown1.3.js' type='text/javascript'></script>
<link rel="stylesheet" type="text/css" href="../css/main.css" />
</head>
<body>
<div data-role="page" id="tequatl">
<div data-role="header">
<a href="index.html" data-role="button" data-icon="arrow-l" data-theme="a">Back</a><h1>Tequatl The Sunless</h1>
</div><!-- /header -->
<div data-role="content">
<div id="serverSelect"></div>
<div id="data"></div>
</div><!-- /content -->
<script>
var cookie = getCookie('DTMServerCookie')
if (cookie == null || cookie == "")
{
}
else {
document.getElementById('serverSelect').innerHTML ='<a href="tequatl.html" data-role="button" data-icon="back" data-theme="c" onclick="deleteCookie(\'DTMServerCookie\')">Change Server</a>';
//alert("getTimes.php?dragon=Tequatl&server="+cookie);
$.get("getTimes.php?server="+cookie+"&dragon=1", function(data){
document.getElementById('data').innerHTML =' '+data;
});
}
function setCookie(key, value) {
var expires = new Date();
expires.setTime(expires.getTime() + 31536000000); //1 year
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
}
function getCookie(key) {
var keyValue = document.cookie.match('(^|;) ?' + key + '=([^;]*)(;|$)');
return keyValue ? keyValue[2] : null;
}
function deleteCookie(key) {
document.cookie = key + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT;';
}
</script>
</div><!-- /page -->
</body>
</html>
Code for getTimes.php:
<?php
//connect to sql
//##############################################
//##Added this echo to see if mobile jQuery interferes with timer. Apparently not?
echo '<head>
<title>GW2 Dragon Timer </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src="../js/jquery.jcountdown1.3.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="../css/main.css" />
</head> ';
//##############################################
//Here I set variables and perform selection from the database. I then proceed to put them into a table.
echo '<tr class="border_bottom" id="tr'.$row['id'] . '"><td width="23px">' . $quality . '</td><td width="50px">' . $day . '</td><td width="150px">Tequatle the Sunless
</td><td><span id="time' . $timeDiv . '" class="time"></span></td>';
echo '<td valign="middle" width="38"> <a href="?time=' . $row['id'] . '&vote=up"><img src="images/up.png" width="16" height="16" title="Vote as correct" /></a> <a href="?time=' . $row['id'] . '&vote=down"><img src="images/down.png" width="16" height="16" title="Vote as incorrect" /></a></td></tr>
';
$today = date("F j Y, H:i");
$today = new DateTime($today);
//$today->setTimeZone($usersTimezone);
$today = $today->format('F j Y, H:i');
$today = strtotime($today);
$timeDiff = round(abs($today - strtotime($datetime)) / 60,2);
if ($timeDiff < 30)
{
$defeated = 'Defeated '.$timeDiff.' minutes ago';
}
else if ($timeDiff > 30)
{
$defeated = 'Defeated';
}
$scriptToggleRowDesc .= '
$("#time' . $timeDiv . '").countdown({
htmlTemplate: "%{h} <span class=\"cd-time\">hours</span> %{m} <span class=\"cd-time\">mins</span> %{s} <span class=\"cd-time\">sec</span>",
date: "' . $datetime . '", //Counting TO a date
onChange: function( event, timer ){
},
onComplete: function( event ){
/*var notify = $("input#cb'.$timeDiv.'").is(":checked");
if (notify == true)
{
$("body").append(\'<embed src="sounds/notify1.wav" autostart="true" hidden="true" loop="true">\');
}*/
$(this).html("'.$defeated.'");
},
leadingZero: true,
direction: "down"
});
';
}
echo '<script>'.$scriptToggleRowDesc.'</script></table>';
?>
Any help in getting the timer to work in my mobile page, is greatly appreciated!
Thank You