IE8 droppable <tr> bug ?

IE8 droppable <tr> bug ?

Hello,
I have a table which have a droppable <tr> and draggable <div>s . In the drop function, I'm always getting the 1st row of the table even if I drop on another row of the table when using IE8. It works in other browsers. Live demo :  http://jsbin.com/anogo3

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4.     <script type="text/javascript" src="jquery.js"></script>
  5.     <script type="text/javascript" src="jquery-ui-1.8.4.custom.min.js"></script>
  6. <script type="text/javascript">
  7. $(document).ready(function() {
  8. $("#containment-wrapper div").draggable({
  9. revert: true,
  10. cursor: 'move',
  11. });

  12. $("#containment-wrapper tr").droppable({
  13. drop: function(event, ui) {
  14. alert("Dropped on " + $(this).attr('id'));
  15. }
  16. });
  17. });
  18. </script>
  19. </head>
  20. <body>

  21. <div>
  22. <h2>&nbsp;</h2>
  23. </div>

  24. <table id="containment-wrapper" border="1">
  25. <tbody >
  26. <tr class="odd" id="myid1">
  27. <td style="text-align: left; width: 20%;"><div id="cell1">CELL 1</div></td>
  28. </tr>
  29. <tr class="odd" id="myid2">
  30. <td style="text-align: left; width: 20%;"><div id="cell2">CELL 2</div>
  31. </td>
  32. </tr>
  33. <tr class="odd" id="myid3">
  34. <td style="text-align: left; width: 20%;"><div id="cell3">CELL 3</div>
  35. </td>        
  36. </tr>
  37. </tbody>
  38. </table>
  39. </body>
  40. </html>

If I remove line 1 or line 24 - 26 the bug disappears ?!

Any ideas what's wrong ?