filmov
tv
jQuery UI Selectmenu Tutorial | Selectmenu Widget in jQuery UI - jQuery UI Tutorial 13

Показать описание
Notes for You:: jQuery UI Selectmenu Widget.
- converts the HTML select tag into a theme able and customizable UI control.
Creating Select menu Widget:
1. Create a new HTML document with basic HTML document structure code
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Selectmenu 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 select menu widget; we need to create select tag with list of options
<h3>Qualification:</h3>
<select id="selectmenu">
<option value="s">SSC</option>
<option value="i">Intern</option>
<option value="u">UG</option>
<option value="p">PG</option>
</select>
4. Select the element using jQuery and call the respective jQuery UI function on it
Select the element using jQuery selector, call selectmenu jQuery UI function on it
<script type="text/javascript">
$("#selectmenu").selectmenu();
</script>
Complete Code:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Selectmenu Demo</title>
</head>
<body>
<h3>Qualification:</h3>
<select id="selectmenu">
<option value="s">SSC</option>
<option value="i">Intern</option>
<option value="u">UG</option>
<option value="p">PG</option>
</select>
<script type="text/javascript">
$("#selectmenu").selectmenu();
</script>
</body>
</html>
Note:
- replace < with less-than symbol.
- replace > with greater-than symbol.
=========================================
Follow the link for next video:
jQuery UI Tutorial 14 - jQuery Menu Tutorial
Follow the link for previous video:
jQuery UI Tutorial 12 - jQuery UI Autocomplete 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
- converts the HTML select tag into a theme able and customizable UI control.
Creating Select menu Widget:
1. Create a new HTML document with basic HTML document structure code
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Selectmenu 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 select menu widget; we need to create select tag with list of options
<h3>Qualification:</h3>
<select id="selectmenu">
<option value="s">SSC</option>
<option value="i">Intern</option>
<option value="u">UG</option>
<option value="p">PG</option>
</select>
4. Select the element using jQuery and call the respective jQuery UI function on it
Select the element using jQuery selector, call selectmenu jQuery UI function on it
<script type="text/javascript">
$("#selectmenu").selectmenu();
</script>
Complete Code:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Selectmenu Demo</title>
</head>
<body>
<h3>Qualification:</h3>
<select id="selectmenu">
<option value="s">SSC</option>
<option value="i">Intern</option>
<option value="u">UG</option>
<option value="p">PG</option>
</select>
<script type="text/javascript">
$("#selectmenu").selectmenu();
</script>
</body>
</html>
Note:
- replace < with less-than symbol.
- replace > with greater-than symbol.
=========================================
Follow the link for next video:
jQuery UI Tutorial 14 - jQuery Menu Tutorial
Follow the link for previous video:
jQuery UI Tutorial 12 - jQuery UI Autocomplete 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
Комментарии