On Fri, May 15, 2009 at 1:22 PM, brian <bally.z...@gmail.com> wrote:
> On Fri, May 15, 2009 at 9:03 AM, Liam Byrne <l...@onsight.ie> wrote:
>> Is it possible that IE7 & 8 see "html" as a reserved word ?
>>
>> Try changing the hmtl variable in both function(html) and
>> $('#nav_admin').html(html) to something else
>
> No, there's no difference. There's also no request made to the server,
> in any case. This occurs with just a single click on the select list
> (ie. no "change").
>
> I'm using 1.3.2, btw. Stupid of me to forget that.
>
> I'm going to whip up a minimal test page to see if I can isolate this.
>

Same results using the following:

$(function()
{
        $('#test').change(function()
        {
                var test_id = $(this).val();
                alert(test_id);
                return false;
        });
});

<form action="#">
        <select id="test">
                <option value="1">1</option>
                <option value="2">2</option>
                <option value="3">3</option>
        </select>
</form>

I've posted the full test page here:

http://pastebin.com/m6b255635

I'm seeing it in:

IE 8.0.6001.18702
some version of IE 7. I can't be more specific because the "about..."
box won't open. I suspect this is related to having installed it
through "Multiple IEs". I suppose it's even possible that that's what
is causing this bug, though I doubt it.

Again, when the pop-up thingy comes up, I can go into options and see
that pop-up blocking is supposedly disabled. I realise now that this
is definitely an IE bug, not jQuery's (I never really suspected that),
but thought I'd post this here for posterity.

Someone else came across the same problem just last week. I wonder if
a recent update introduced this bug.
http://forums.shopplugin.net/topic/order-by-list-and-ie-8-popup-blocker

Reply via email to