Skip to main content

Search and Top Navigation

#7488 closed bug (notabug)

Opened June 17, 2011 09:10PM UTC

Closed June 17, 2011 09:11PM UTC

Last modified June 18, 2011 08:12AM UTC

Does Not Work With IE9

Reported by: rjperes Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.resizable Version: 1.8.13
Keywords: Cc:
Blocked by: Blocking:
Description

Does not work with IE9.

Attachments (0)
Change History (2)

Changed June 17, 2011 09:11PM UTC by scottgonzalez comment:1

resolution: → invalid
status: newclosed

Changed June 18, 2011 08:12AM UTC by rjperes comment:2

<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title></title>

<style type="text/css">

</style>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/jquery-ui.js"></script>

<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/themes/base/jquery-ui.css"/>

<script type="text/javascript">

function resizable()

{

$('#containee').resizable(

{

start: function(evt, ui)

{

window.status = 'start resize';

},

stop: function(evt,ui)

{

window.status = 'stop resize';

},

aspectRatio: true,

minHeight: 32,

minWidth: 32

});

}

$(document).ready(function()

{

resizable();

});

</script>

</head>

<body>

<form>

<div id="container" style="border: solid 1px black; position: absolute; top: 100px; left: 100px; right: 100px; bottom: 100px;">

<div id="containee" style="background-color: orange; width: 50px; height: 50px;" class="ui-widget-content"></div>

</div>

</form>

</body>

</html>