Hi every body,
I use both Quiz and Closed question on my web site and this modules are complementary.
They work find but i have discoverd that for closed question, the drag and drop 's excercice don't work on the new version of IE (IE 9) .
In fact, it's impossible to move the square, area, of the excercise . I have verified on the developper web site , it's the same.

This new browser of microsoft 'll be deploy with the microsoft update of vista and seven OS.

So .....
Have yopu got a idea ?
Thank you

Comments

HylkeVDS’s picture

I don't have IE myself, and here at the uni we don't have vista, I also don't have colleagues that can install IE9.
I suspect it's a problem between jQuery 3 and IE9, but that also means there's little we can do, as D6 is stuck on jQuery 3.

So at this time there is little I can do.

danny1997’s picture

I'm using IE 9 too. The drag and drop function is working perfectly.

But my site is in Dupal 7.

HylkeVDS’s picture

It seems this is a bug in jQuery_ui. Can you try this fix?

Add this to the bottom of modules/jquery_ui/jquery.ui/ui/ui.core.js

(function($) {
    var a = $.ui.mouse._mouseMove;
    $.ui.mouse._mouseMove = function(b) {
        if ($.browser.msie && document.documentMode >= 9) {
            b.button = 1
        };
        a.apply(this, [b]);
    }
} (jQuery));
HylkeVDS’s picture

jvdkolk’s picture

This works!

One glitch: the 'Damp' draggable (which has a tooltip) does not have mouse:move (but mouse:help, which is imho less logical)

HylkeVDS’s picture

Status: Active » Closed (fixed)

Good, another problem solved :)
That mouse thingy is caused by the tooltip module.