mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
27 lines
641 B
HTML
27 lines
641 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Simple Resizable</title>
|
|
<link rel="stylesheet" href="all.css" type="text/css">
|
|
<link rel="stylesheet" href="../../themes/base/ui.all.css" type="text/css" />
|
|
<script type="text/javascript" src="../../jquery-1.3pre.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$("#resizable").resizable();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<ul class="plugins">
|
|
<li class="plugin">
|
|
Resizable
|
|
<div id="resizable"></div>
|
|
</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|