Archive for June 6th, 2007

Firefox Tab Switching Code

Wednesday, June 6th, 2007

Here is some javascript code that I am using for my keyboard tab switching in Firefox. Note: in order to use this, you must install the keyconfig extension.

Next Tab:
var tab = gBrowser.mCurrentTab; if(tab.nextSibling) { gBrowser.mTabContainer.selectedIndex++; } else { gBrowser.mTabContainer.selectedIndex = 0; }

Previous Tab:
var tab = gBrowser.mCurrentTab; if(tab.previousSibling) { gBrowser.mTabContainer.selectedIndex–; } else { gBrowser.mTabContainer.selectedIndex = gBrowser.mTabs.length - 1; }

I had originally gotten some simpler code for tab switching, but I wanted to go back to the first tab if I was trying to go to the next tab but was already at the last tab.