Get Remaining days in current month in JavaScript

Get Remaining Days in Current Month using JavaScript

JavaScript code as given below.

var getRemanningDays = function () {
        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


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^