D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
tillg
Full window
Github gist
A JS snippet to display a message only if it's a certain time in Germany (no matter where I am with my browser). Made by Anh.
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Nightly Marker</title> </head> <body onload="nightlyMarker()"> <p id="nightlyMarker" style="border: 1px solid#D04437; background-color:#FFF8F7; border-radius:5px; margin: 10px; padding: 10px 10px 10px 36px; display: none"> <b>Warning</b>: Jira is in nightly maintenance! Please do not do any write operations since they would brake currently running jobs! Thank you ;) </p> <script src="moment.js"></script> <script src="moment-timezone-with-data.js"></script> <script src="app.js" type="text/javascript"></script> </body> </html>