Bug Tracker

Ticket #2583 (closed bug: wontfix)

Opened 10 months ago

Last modified 10 months ago

[Resizable & Draggable] Doesn't work in Opera when called before appendTo()

Reported by: telega Assigned to: paul
Type: bug Priority: minor
Milestone: 1.2.4 Component: ui
Version: 1.2.3 Keywords:
Cc: Needs: Review

Description

The code below produces in Opera 9.23 non-draggable and non-resizable div. However if appendTo(document.body) is called before resizable() and draggable(), the produced div is fully functional. The issue happens in Opera only, in Firefox and IE order of methods execution doesn't matter.

<script src="jquery/jquery-1.2.3.js"></script>
<script src="jquery/jquery.dimensions.js"></script>
<script src="jquery/ui.mouse.js"></script>
<script src="jquery/ui.draggable.js"></script>
<script src="jquery/ui.resizable.js"></script>
<script>
  $(document).ready(function() {
    $("<div id='aaa'></div>").resizable()
                             .draggable()
                             .appendTo(document.body);
  });
</script>
<style>
  #aaa {
    width: 100px;
    height: 100px;
    background-color: lightblue;
    border: 1px solid black;
  }
</style>

Attachments

Change History

Changed 10 months ago by paul

  • status changed from new to closed
  • resolution set to wontfix

This one is not possible to fix!

Note: See TracTickets for help on using tickets.