not working in ie

not working in ie

Hi all,

I've the following code

  1.   $("#show").dialog({
  2.    open:function() {
  3.                     $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar-close").remove();
  4.                     $(this).dialog('option', 'position', [500,100] ); },
  5.                     autoOpen: false,
  6.                     width: 600,
  7.                
  8.                     modal: false,
  9.                     buttons: {
  10.                         "sluiten": function() {
  11.                              $(this).dialog('close');
  12.                     }
  13.                         //
  14.                     }
  15.                        
  16.                    
  17. });
  18.   
  19.    
  20. });

  21. function showedit(id) {
  22.     $.post($('#show').load('details.php?id='+id))
  23.    
  24.     $('#show').dialog('open');
  25.        
  26. }
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