Hi,
I am using the Jquery dialog box but its not show in IE8, FIREFOX as well in CHROME. I am also include the UI plug in file but its still not appear. Its only shows the text with in div.
The code is
<html>
<head>
<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script> type=""></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#news_more").click(function()
{
$("#news_more").dialog({height: 100, modal: true });
});
});
</script>
</head>
<body>
<div id="news_more">
<a href="#">some text here will be in dialog box</a>
</div>
</body>
</html>