mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
73 lines
2.1 KiB
HTML
73 lines
2.1 KiB
HTML
<!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.dialog.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() {
|
|
$('select#speed').selectmenu();
|
|
|
|
$( "#dialog" ).dialog();
|
|
});
|
|
</script>
|
|
<style>
|
|
form { margin: 20px 0 0 0 }
|
|
fieldset { border: 0; }
|
|
label { display: block; }
|
|
select { width: 200px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="demo">
|
|
|
|
|
|
<div id="dialog" title="Basic dialog">
|
|
<p>Some example content</p>
|
|
<p><a href="#nogo">Test Link</a></p>
|
|
<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>
|
|
</div>
|
|
|
|
<!-- Sample page content to illustrate the layering of the dialog -->
|
|
<div class="hiddenInViewSource" style="padding:20px;">
|
|
<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
|
|
<form>
|
|
<input value="text input" /><br />
|
|
<input type="checkbox" />checkbox<br />
|
|
<input type="radio" />radio<br />
|
|
<select>
|
|
<option>select</option>
|
|
</select><br /><br />
|
|
<textarea>textarea</textarea><br />
|
|
</form>
|
|
</div><!-- End sample page content -->
|
|
|
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|