Skip to content

Instantly share code, notes, and snippets.

Created October 25, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/906d4ed339322ec79a74 to your computer and use it in GitHub Desktop.
Save anonymous/906d4ed339322ec79a74 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/duyawu
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
.date{
background: #8c8c8c;
padding: 5px;
margin-top: 10px;
display: block;
color:white;
font-weight:bold;
}
</style>
</head>
<body>
<p>Today Is :<br><span class="date"></span></p>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script id="jsbin-javascript">
var time = new Date();
var today =time.toLocaleDateString();
$(function(){
$('.date').text(today);
});
console.log (today);
</script>
<script id="jsbin-source-css" type="text/css">.date{
background: #8c8c8c;
padding: 5px;
margin-top: 10px;
display: block;
color:white;
font-weight:bold;
}</script>
<script id="jsbin-source-javascript" type="text/javascript">var time = new Date();
var today =time.toLocaleDateString();
$(function(){
$('.date').text(today);
});
console.log (today);
</script></body>
</html>
.date{
background: #8c8c8c;
padding: 5px;
margin-top: 10px;
display: block;
color:white;
font-weight:bold;
}
var time = new Date();
var today =time.toLocaleDateString();
$(function(){
$('.date').text(today);
});
console.log (today);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment