mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-06-06 00:37:25 +03:00
Merge commit 'd21ea7816e
' as 'jquery-ui'
This commit is contained in:
commit
e904a80717
629 changed files with 341074 additions and 0 deletions
70
jquery-ui/demos/tooltip/forms.html
Normal file
70
jquery-ui/demos/tooltip/forms.html
Normal file
|
@ -0,0 +1,70 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jQuery UI Tooltip - Forms</title>
|
||||
<link rel="stylesheet" href="../../themes/base/all.css">
|
||||
<script src="../../external/jquery/jquery.js"></script>
|
||||
<script src="../../ui/core.js"></script>
|
||||
<script src="../../ui/widget.js"></script>
|
||||
<script src="../../ui/position.js"></script>
|
||||
<script src="../../ui/tooltip.js"></script>
|
||||
<script src="../../ui/button.js"></script>
|
||||
<link rel="stylesheet" href="../demos.css">
|
||||
<style>
|
||||
label {
|
||||
display: inline-block; width: 5em;
|
||||
}
|
||||
fieldset div {
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
fieldset .help {
|
||||
display: inline-block;
|
||||
}
|
||||
.ui-tooltip {
|
||||
width: 210px;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
$(function() {
|
||||
var tooltips = $( "[title]" ).tooltip({
|
||||
position: {
|
||||
my: "left top",
|
||||
at: "right+5 top-5"
|
||||
}
|
||||
});
|
||||
$( "<button>" )
|
||||
.text( "Show help" )
|
||||
.button()
|
||||
.click(function() {
|
||||
tooltips.tooltip( "open" );
|
||||
})
|
||||
.insertAfter( "form" );
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<form>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label for="firstname">Firstname</label>
|
||||
<input id="firstname" name="firstname" title="Please provide your firstname.">
|
||||
</div>
|
||||
<div>
|
||||
<label for="lastname">Lastname</label>
|
||||
<input id="lastname" name="lastname" title="Please provide also your lastname.">
|
||||
</div>
|
||||
<div>
|
||||
<label for="address">Address</label>
|
||||
<input id="address" name="address" title="Your home or work address.">
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<div class="demo-description">
|
||||
<p>Use the button below to display the help texts, or just focus or mouseover the indivdual inputs.</p>
|
||||
<p>A fixed width is defined in CSS to make the tooltips look consistent when displayed all at once.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue