Sorry about the 12hr mix up (still confused)
Got in touch with Jason Fantasigraphic He has replied back and this is
what you do
function updateClock ( )
{
** * * *var currentHours_name_array = new Array ("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "00")
** * * *var currentMinutes_name_array = new Array ("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28","29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "00")
** * * *var currentSeconds_name_array = new Array ("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28","29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "00")
** * * *var currentTime = new Date ( );
** * * *var currentHours = currentTime.getHours ( );
** * * *var currentMinutes = currentTime.getMinutes ( );
** * * *var currentSeconds = currentTime.getSeconds ( );
// Convert an hours component of "0" to "12"
** * * *currentHours = ( currentHours == 0 ) ? currentHours + 24 : currentHours;
// Convert the hours component to 12-hour format if needed
** * * *currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
All they need to do is go to section in red and remove the 2 //
Save and Respring!
For the life of me (feeling unwell) I can not get it to work
Knowing Jason I am sure it is spot on and it is me being stupid