Skip to main content

Search and Top Navigation

Ticket #3930: dialog.html


File dialog.html, 0.5 KB (added by kenman, January 29, 2010 07:40PM UTC)

bug repro

<html>
<head>
<link type="text/css" href="./jquery-ui-1.7.2.custom.css" rel="stylesheet" />
<script type="text/javascript" src="./jquery-1.4.1.js"></script>
<script type="text/javascript" src="./jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript">
$(function(){
	$('#example').dialog({
		autoOpen: false
	});

	$('button').click(function(){
		$('#example').dialog('open');
	});
});
</script>
</head>
<body>
<div id="example">
	<div style="height: 300px;">test</div>
</div>
<button>click me</button>
</body>
</html>

Download in other formats:

Original Format