No dialog scrollbars in Internet Explorer (IE 6, 7, 8)
I am trying to use the dialog widget but I can't get scroll bars to
show up in an IE browser. I downloaded the latest version of the js
and css and wrote as simple of a test as I could and it still gives no
scroll bar. I searched the documentation but could not find this as a
known issue. Does anyone else have trouble with IE and scroll bars?
Is there a known fix for this? I am including my simple test html.
This works fine in Firefox and Safari.
<html>
<head>
<link rel="stylesheet" type="text/css" id="jquery-style-sheet"
href="./css/smoothness/jquery-ui-1.7.2.custom.css" />
<script type="text/javascript" src="./jquery-1.3.2.min.js"></
script>
<script type="text/javascript" src="./jquery-
ui-1.7.2.custom.min.js"></script>
<script type="text/javascript">
$(document).ready( function() {
$("#listDialog").dialog({
autoOpen: true,
height: 200
});
});
</script>
</head>
<body>
<div id="listDialog" title="Foo">
foo<p/>
foo<p/>
foo<p/>
foo<p/>
foo<p/>
foo<p/>
foo<p/>
foo<p/>
foo<p/>
foo<p/>
</div>
</body>
</html>