jQuery Datepicker Calendar With Slide Down Effect In Asp.Net

Category > ASP.NET || Published on : Wednesday, February 17, 2016 || Views: 8578 || jQuery Datepicker Calendar With Slide Down Effect In Asp.Net jQuery Datepicker Calendar


Introduction

Here Pawan Kumar will explain how to jQuery Datepicker Calendar With Slide Down Effect In Asp.Net

Description

In previous post I have explained How to set focus on first textbox of the page, Assign datepicker to runtime/dynamic textboxes in ASP.NET using jQuery, Show Asp.Net Gridview Row Details using Bootstrap Tooltip on MouseHover GridView Row Cell, Best 7 Resources for 3 tier architecture Asp.Net, Show Hide Password Using Javascript ASP.NET, How to Create Tab Control Using jQuery In Asp.Net, and many more articles.

Now I will explain How to jQuery Datepicker Calendar With Slide Down Effect In Asp.Net

So follow the steps to learn jQuery Datepicker Calendar With Slide Down Effect In Asp.Net

ASPX Code:-

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

 <!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>jQuery Datepicker Calendar With Slide Down Effect In Asp.Net</title>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
    <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
    <script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
    <style>
        .fontsize {
            font-size: 11px;
        }
    </style>
    <script>
        $(function () {
            $("#txtDatepicker").datepicker();
            var effect = "slideDown";
            $("#txtDatepicker").datepicker("option", "showAnim", effect);
        });
    </script>
</head>
<body class="fontsize">
    Date: <input type="text" id="txtDatepicker" size="30">
</body>
</html>

Conclusion:

So, In this tutorial we have learned, jQuery Datepicker Calendar With Slide Down Effect In Asp.Net

Download Source Codes