Previously, we learned how to use jQuery to add some interactivity to our web pages. This time, are you getting started with jQuery UI? You’ve come to the right place!
This step by step tutorial aims to give you a head start in using jQuery UI. You probably know what jQuery is so you want to take a beautiful step forward with jQuery UI, and that’s awesome!
jQuery UI jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.
Whether you’re building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is a perfect choice.
For me, Bootstrap and jQuery UI look good together. It also allows us to choose from different themes available, you can even create your own theme! But this post only covers running a very simple jQuery UI script in your web browser.
The following steps below will make an awesome date picker with jQuery UI. Let’s code!
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title></title> </head> <body> </body> </html>
Users will be able to click this and show a jQuery UI calendar picker later.
<input type="text" id="myDatepicker" placeholder="Click to pick date" />
This is because jQuery UI is built on top of the jQuery library.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
This is actually the first step in enabling jQuery UI on your page.
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
Put it inside the tag, after the tag. This CSS will make our UI stylish.
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.min.css" />
Add the following code under the code of step 5. This is how you make a simple text box to an awesome jQuery UI date picker.
<script> $( "#myDatepicker" ).datepicker(); </script>
Quick Tip: Always use the minified version. For instance, use jquery-ui.min.css instead of just jquery-ui.css
Continue to read below, you will see the complete code of the steps above.
You will have to click the text box saying “Click to pick a date” to see jQuery UI with different themes in action.
By the way, examples 2.1 and 2.2 uses Google’s content delivery network to run jQuery UI, meaning you won’t have to download the jQuery and jQuery UI library, you just have to include it.
Query UI with Smoothness theme hosted in Google CDN.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>jQuery UI Tutorial for Beginners - smoothness theme - by codeofaninja.com</title> <!-- step 4 - include you jquery ui theme --> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.min.css" /> </head> <body> <!-- step 1 --> <input type="text" id="myDatepicker" placeholder="Click to pick date" /> <!-- step 2 --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <!-- step 3 --> <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script> <script> /* step 5 */ $( "#myDatepicker" ).datepicker(); </script> </body> </html>
jQuery UI with Vader theme hosted by Google too.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>jQuery UI Tutorial for Beginners - vader theme - by codeofaninja.com</title> <!-- step 4 - include you jquery ui theme --> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/vader/jquery-ui.min.css" /> </head> <body> <!-- step 1 --> <input type="text" id="myDatepicker" placeholder="Click to pick date" /> <!-- step 2 --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <!-- step 3 --> <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script> <script> /* step 5 */ $( "#myDatepicker" ).datepicker(); </script> </body> </html>
What if I don’t want a CDN? I want to host my own jQuery UI library? No problem, you can always go to the jQuery UI download builder, you just have to select your preferred theme using the dropdown at the lower part of the page.
jQuery UI library is self-hosted in the example code below.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>jQuery UI Tutorial for Beginners - vader theme - by codeofaninja.com</title> <!-- step 4 - include you jquery ui theme --> <link rel="stylesheet" href="jquery-ui-1.10.3.custom/css/le-frog/jquery-ui-1.10.3.custom.min.css" /> </head> <body> <!-- step 1 --> <input type="text" id="myDatepicker" placeholder="Click to pick date" /> <!-- step 2 --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <!-- step 3 --> <script src="jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js"></script> <script> /* step 5 */ $( "#myDatepicker" ).datepicker(); </script> </body> </html>
You can download all the codes used in this tutorial for only $9.99 $5.55!
[purchase_link id=”12401″ text=”Download Now” style=”button” color=”green”]
Want to see more of jQuery UI? You can always visit:
Up Next: Learn PHP and MySQL CRUD Tutorial for Beginners – Build a simple web application with PHP and MySQL database.
[adinserter block=”1″]
[adinserter block=”3″]
Thanks for reading our jQuery UI tutorial for beginners!