Friday, March 2, 2012

Implement Resizable object using jQuery UI


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

<title>jQuery UI Resizable</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 type="text/javascript">
function onloaded(){
$( "#resizable" ).resizable();
}


</script>
</head>
<body onload="onloaded();">
<h1>Mobile-Web-App: jQuery UI resizable</h1>

<div>
<img id="resizable" src="Mobile-Web-App.png"></img>
</div>

</body>
</html>


No comments:

Post a Comment