My question is more about logic not code.I created something called prepared messages with time i supply to each new message, i compare the time with current time and give each row a background. Is it possible for me to fetch the time with javascript only the current time NO DATE. Regards
To compare only the time, without year, month and day taken into account, try the following:
var now = new Date().setFullYear(1, 0, 1)
, andThen = new Date(dateMessageSent).setFullYear(1, 0, 1)
if (now > andThen) doYourStuff()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With