Friday, March 2, 2012

jQuery UI: Button

Example of jQuery UI Button:
jQuery UI: Button
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mobile-Web-App: jQuery UI Button</title>

<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.js"></script>

<script>
$(function() {
$( "#mybutton" ).click(function() {
alert("Button Clicked");
});
});
</script>
</head>
<body>
<h1>Mobile-Web-App: jQuery UI Button</h1>

<button id="mybutton">My Button</button>
</body>
</html>


No comments:

Post a Comment