jquery-ui/demos/button/default.html

35 lines
857 B
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
2010-01-20 14:00:14 +00:00
<html lang="en">
<head>
2010-09-10 02:43:06 +00:00
<meta charset="utf-8">
<title>jQuery UI Button - Default functionality</title>
<link rel="stylesheet" href="../../themes/base/all.css">
<script src="../../jquery-1.10.2.js"></script>
<script src="../../ui/core.js"></script>
<script src="../../ui/widget.js"></script>
<script src="../../ui/button.js"></script>
2010-09-10 02:43:06 +00:00
<link rel="stylesheet" href="../demos.css">
<script>
2010-01-20 14:00:14 +00:00
$(function() {
2012-09-10 15:33:46 +00:00
$( "input[type=submit], a, button" )
.button()
.click(function( event ) {
event.preventDefault();
});
2010-01-20 14:00:14 +00:00
});
</script>
</head>
<body>
2010-09-10 02:43:06 +00:00
<button>A button element</button>
2012-05-21 18:53:27 +00:00
<input type="submit" value="A submit button">
2010-09-10 02:43:06 +00:00
<a href="#">An anchor</a>
2010-01-20 14:00:14 +00:00
<div class="demo-description">
<p>Examples of the markup that can be used for buttons: A button element, an input of type submit and an anchor.</p>
2012-09-10 15:33:46 +00:00
</div>
2010-01-20 14:00:14 +00:00
</body>
</html>