Hi All,
I am facing an weird issue in IE6 when I use load and dialog at the
same time. The form isn't getting submitted it just throws js errors
$(document).ready(function() {
$("#dialog-div").dialog({
bgiframe: true,
buttons: {},
closeOnEscape: true,
width: 650,
minHeight: 300,
autoOpen: false,
position: 'center',
resizable: false,
draggable: true
});
});
<a class="anchor-link" onclick="javascript: openDialog('val1')">Click
me to open dialog</a>
<div id="dialog-div"></div>
<script type="text/javascript" language="Javascript">
function openDialog(valueid) {
$('.ui-dialog #dialog-div').load('/advise.html');
$('#dialog-div').dialog('open');
}
</script>
Please can anyone help me out what's wrng with it
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---