Javascript add different text to each minute of hour
Topics related to client-side programming language.
Post questions and answers about JavaScript, Ajax, or jQuery codes and scripts.
-
JanMolendijk
- Posts:282
- Location:Holland Rotterdam
Javascript add different text to each minute of hour
Hello Coursesweb I`m unknown with javascripts ????
I would like to add function minutes to this script
on each minute an diferent text added to the hour
Hope you can help me out....
Code: Select all
<SCRIPT>
day = new Date()
hr = day.getHours()
if (hr == 1) document.write("<font face='Verdana' color='blue' size='5'>After one .... not yet to bed?</font>")
if (hr == 2) document.write("<font face='Verdana' color='blue' size='5'>After two.... Wouldn`t you even go to sleep?</font>")
</SCRIPT>
Admin
Posts:805
Hello,
Try the following script.
Code: Select all
<div id='addtxtmin' style='color:#00d; font-size:20px; font-weight:700'></div>
<script>
const txt_min =[
'After one .... not yet to bed?',
'After two.... Wouldn`t you even go to sleep?',
'Minute 3',
'Minute 4',
'Minute 5'
];
var addtxtmin = document.getElementById('addtxtmin');
function addTxtMin() {
var ddate=new Date()
var min = ddate.getMinutes();
var txt = txt_min[min] ? txt_min[min] : 'Default text: Minute '+ min;
addtxtmin.innerHTML = txt;
setTimeout('addTxtMin()',60000);
}
addTxtMin();
</script>
Similar Topics
- Hour and Minutes togheter in Javascript
JavaScript - jQuery - Ajax
First post
Dear Coursesweb I can not find out how to add the hours + minutes togheter.
<SCRIPT LANGUAGE= JavaScript >
day = new Date()
hr =...
Last post
See and use the following example:
<script>
var day = new Date();
let hr = day.getHours();
let mn = day.getMinutes();
let se =...
- Display message to every minute in Javascript
JavaScript - jQuery - Ajax
First post
Hello,
On eatch minute from the current hour I wanna have an message
I can not find out how to complete
I hope to get something like this (code...
Last post
If you only want to display a message to every minute, just use the setInterval() function. It calls a function repeatedly, over and over again, at...
- Speech to text without https
General Forum
First post
Pleasant Coursesweb,
Is their anything posible without https for speech to text fill-in ?
Or must I turn my SSL document on the XAMPP-server ?
Last post
Hello,
I don't know about speech to text fill-in.
Anyway, I want to inform you that this forum will be closed for register or posting.
Any...