Simple Countdown Process in JQuery


    In this section Mentioned Automatic Time Countdown in JQuery.

<html>
<head>
    <script src="jquery-2.1.1.min.js"></script>
    <script src="jquery-ui.js"></script>
    <link rel="stylesheet" href="jquery-ui.css">
    <link href="Timer/timeTo.css" rel="stylesheet" />
    <script src="Timer/jquery.time-to.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('#TimerReslTime').timeTo({

                displayDays: 2,
                seconds: 123,  //in Sec
                theme: "black",
                method: "stop",
                displayCaptions: true,
                fontSize: 24,
                captionSize: 7,
            });
        });
    </script>
</head>
<body>

    <div class="form-group">
        <label for="lblResolutionTime" id="lblResolutionTime" class="col-sm-4 control_label_left">time</label>
        <label for="lbl" class="col-sm-8 control_label_right pull-right">
            <div id="TimerReslTime"></div>
        </label>
    </div>
</body>

</html>





Comments

Popular posts from this blog

Insecure cookie setting: missing Secure flag

Maximum Stored Procedure Function Trigger or View Nesting Level Exceeded (limit 32) in SQL Server

Display Line Chart Using Chart.js MVC C#