mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
27 lines
764 B
HTML
27 lines
764 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Resizable Visual Test : Default</title>
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" />
|
|
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.resizable.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$("#resizable").resizable({
|
|
aspectRatio: 'preserve'
|
|
});
|
|
});
|
|
</script>
|
|
<style type="text/css">
|
|
#resizable { width: 50px; height: 100px; background: silver; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="resizable">Resizable</div>
|
|
|
|
</body>
|
|
</html>
|