I'm trying to use the basic .js countdown timer from Keith Wood but am running into troubles when trying to adjust the layout. Because I cannot inspect the element (every time I inspect it it reloads and vanishes so I can't work out what CSS needs to be adjusted).
I want it to output as : XX days XX hours xx minutes
I tried adding a layout code to the script but it does nothing.
<script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
$('#textLayout').countdown({until: liftoffTime,
layout: '{sn} {sl}, {mn} {ml}, {hn} {hl}, and {dn} {dl}'});
});
</script>
This part in particular apparently should make it output as I want but it doesn't
$('#textLayout').countdown({until: liftoffTime,
layout: '{sn} {sl}, {mn} {ml}, {hn} {hl}, and {dn} {dl}'});
});
Here is the live site: username is admin password is gogogo
There you go!
All you do if you get this problem (and assuming you are using google chrome) is righ-click -> inspect
Then get the parent container and right click -> copy as HTML and then paste into an editor
EDIT
To address your code giving the wrong output (and not the CSS layout part -
just remove the