JavaScript code as given below.
var date = new Date();
var time = new
Date(date.getTime());
time.setMonth(date.getMonth() + 1);
time.setDate(0);
alert(time.getDate() >
date.getDate() ? time.getDate() - date.getDate() : 0);
}
Live
example code as given below.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Remaining days in
current month in javascript</title>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
// Add your javascript here
$(function () {
getRemanningDays();
});
var getRemanningDays = function () {
var date = new Date();
var time = new
Date(date.getTime());
time.setMonth(date.getMonth() + 1);
time.setDate(0);
var days =
time.getDate() > date.getDate() ? time.getDate() - date.getDate() : 0;
alert(days + ' Days Remaining.');
$('#remainingday').html(days);
}
</script>
</head>
<body>
<h1>Get Remaining days
in current month in JavaScript</h1>
<p style="color:red;">Remaining Days : <span id="remainingday"></span> days.</p>
</body>
</html>
The
Output : go to link http://embed.plnkr.co/FFUXhl/preview