jQuery UI Datepicker Widget - jQuery UI Tutorial 08

preview_player
Показать описание
Notes for You:: jQuery UI Datepicker Widget - jQuery UI Tutorial 08
- indicates a popup or inline calendar.

Creating Date picker Widget:
1. Create a new HTML document with basic HTML document structure code
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Date picker Demo</title>
</head>
<body>
</body>
</html>

2. Link the necessary jQueryUI libray files to the HTML document

3. Code the structure of the widget (i.e. HTML or markup):
To create a date picker widget; we need to create a text input or a div element
Note: If you create a div then the inline calendar gets attached, where as if you create text input field then the calendar gets pop up, whenever the text input field gets focus.

<div id="datepicker">Select date</div>
OR
<input type="text" id="datepicker2"/>

4. Select the element using jQuery and call the respective jQuery UI function on it
Select the element using jQuery selector and call datepicker jQuery UI function on it
<script type="text/javascript">
$("#datepicker").datepicker();
$("#datepicker2").datepicker();
</script>

Complete Code:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Date picker Demo</title>

</head>
<body>
<div id="datepicker">
Select date
</div>

<br/>
<br/>
<input type="text" id="datepicker2"/>

<script type="text/javascript">
$("#datepicker").datepicker();
$("#datepicker2").datepicker();
</script>
</body>
</html>

Note:
- replace < with less-than symbol.
- replace > with greater-than symbol.

=========================================

Follow the link for next video:
jQuery UI Tutorial 09 - jQuery UI Progress Bar Tutorial

Follow the link for previous video:
jQuery UI Tutorial 07 - jQuery UI Tabs Tutorial

=========================================

jQuery UI Tutorials Playlist:-

=========================================
Watch My Other Useful Tutorials:-

Bootstrap Tutorials Playlist:-

Dreamweaver Tutorials Playlist:-

PHP Tutorials Playlist:-

=========================================

► Subscribe to our YouTube channel:

► Visit our Website:

=========================================
Hash Tags:-
#ChidresTechTutorials #jQueryUI #jQueryUITutorial
Рекомендации по теме
Комментарии
Автор

SUBSCRIBE, SHARE & SUPPORT:
VISIT & LEARN AT FREE OF COST:

ChidresTechTutorials
Автор

Can you please teach the draggable and droppable ui

sweetykolamkar