Ticket #7520 (closed bug: fixed)

Opened 2 years ago

Last modified 22 months ago

Tabs Retain Active State in FireFox

Reported by: dmcmeans Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.tabs Version: 1.8.7
Keywords: Cc:
Blocking: Blocked by:

Description

Setting focus in the tab show event causes the active state (ui-state-active) to be retained as you select tabs.

Ex.

    $("#tabs").tabs({
        show: function(event, ui) {
            // set focus to first input on tab panel
            $("#tabs-"+ui.index + " :input:visible:first").focus();
        }
    });

Occurs in FF 3.6. Does not occur in IE8. Commenting out the focus() call stops the behavior.

Change History

comment:1 Changed 2 years ago by scott.gonzalez

  • Component changed from ui.core to ui.tabs

comment:2 Changed 22 months ago by scott.gonzalez

  • Status changed from new to closed
  • Resolution set to fixed

This is working in master.

Note: See TracTickets for help on using tickets.