2011-10-10 18:09:03 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>jQuery UI Selectmenu - Event functionality</title>
|
|
|
|
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css">
|
|
|
|
<script src="../../../jquery-1.6.2.js"></script>
|
|
|
|
<script src="../../../ui/jquery.ui.core.js"></script>
|
|
|
|
<script src="../../../ui/jquery.ui.widget.js"></script>
|
|
|
|
<script src="../../../ui/jquery.ui.position.js"></script>
|
|
|
|
<script src="../../../ui/jquery.ui.button.js"></script>
|
|
|
|
<script src="../../../ui/jquery.ui.menu.js"></script>
|
|
|
|
<script src="../../../ui/jquery.ui.selectmenu.js"></script>
|
|
|
|
<link rel="stylesheet" href="../../../demos/demos.css">
|
|
|
|
<script>
|
|
|
|
$(function() {
|
|
|
|
var mySelectmenu = $('select').selectmenu();
|
|
|
|
|
|
|
|
$("#destroy").click( function() {
|
|
|
|
mySelectmenu.selectmenu("destroy");
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#refresh").click( function() {
|
|
|
|
mySelectmenu.append('<option value="fastsound">Faster than sound</option>');
|
|
|
|
mySelectmenu.selectmenu("refresh");
|
|
|
|
});
|
2011-10-17 20:06:07 +00:00
|
|
|
|
|
|
|
$("#open").click( function() {
|
|
|
|
mySelectmenu.selectmenu("open");
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#close").click( function() {
|
|
|
|
mySelectmenu.selectmenu("close");
|
|
|
|
return false;
|
|
|
|
});
|
2011-10-10 18:09:03 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
form { margin: 20px 0 0 0 }
|
|
|
|
fieldset { border: 0; }
|
|
|
|
label { display: block; }
|
|
|
|
select { width: 200px; }
|
|
|
|
.overflow ul { height: 200px; overflow: auto; }
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="demo">
|
|
|
|
|
|
|
|
<form action="#">
|
|
|
|
<fieldset>
|
|
|
|
<label for="speed">Select a speed:</label>
|
|
|
|
<select name="speed" id="speed">
|
|
|
|
<option value="Slower">Slower</option>
|
|
|
|
<option value="Slow">Slow</option>
|
|
|
|
<option value="Medium" selected="selected">Medium</option>
|
|
|
|
<option value="Fast">Fast</option>
|
|
|
|
<option value="Faster">Faster</option>
|
|
|
|
</select>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
<br />
|
|
|
|
<button id="destroy">Destroy</button>
|
|
|
|
<button id="refresh">Add item and refresh</button>
|
2011-10-17 20:06:07 +00:00
|
|
|
<button id="open">Open</button>
|
|
|
|
<button id="close">Close</button>
|
2011-10-10 18:09:03 +00:00
|
|
|
|
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|