not working in ie
not working in ie
Hi all,
I've the following code
- $("#show").dialog({
- open:function() {
- $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar-close").remove();
- $(this).dialog('option', 'position', [500,100] ); },
- autoOpen: false,
- width: 600,
-
- modal: false,
- buttons: {
- "sluiten": function() {
- $(this).dialog('close');
- }
- //
- }
-
-
- });
-
-
- });
- function showedit(id) {
- $.post($('#show').load('details.php?id='+id))
-
- $('#show').dialog('open');
-
- }
html: <button onmouseover='showedit(" .$row1['clientnumber'].")'>showedit</button>
The idea is that when users go over the button a dialog box is opened and a preview of a record is shown.
Now this works fine in Firefox, Chrome, Opera and Safari but in Internet Explorer it returns an empty dialog box.
I think that the 'id' is not being sent with ie?
I can't provide a working link.
Any help is welcome how to get this working in ie