[jQuery] Overlay not working on jquery-ui-personalized-1.6rc6.min.js
This is my code:
---------------------------------------------------------------------------------------
<script language="javascript" type="text/javascript" src="/js/
jquery-1.3.2.min.js"></script>
<script language="javascript" type="text/javascript" src="/js/
jquery-ui-personalized-1.6rc6.min.js"></script>
<script language="javascript" type="text/javascript">
$(function(){
/* Modal Dialog Box Configuration */
$("#addproductsForm").dialog({
bgiframe: true,
autoOpen: true,
modal: true,
overlay: {
backgroundColor: "#000",
opacity: 0.5
},
position: "center",
dialogClass: "insertForm",
closeable: false
});
});
</script>
---------------------------------------------------------------------------------------
The funny thing is if i downgrade the jquery and UI files to versions
1.2.6 and 1.5.3 respectively, the overlay works but IE throws a
javascript error. Thanks a lot.