1
edit
Changes
no edit summary
You should consider adding a screenshot of your extension so people can see it without having to install it first. ([[User:David.humphrey|David.humphrey]] 16:03, 21 November 2006 (EST))
Hey paul, this is how you create a new tab into Firefox:
<pre>
function openInNewTab ()
if(popTart_current_webpage != '')
{
var newTab = gBrowser.addTab(popTart_current_webpage);
gBrowser.selectedTab = newTab;
}
}
</pre>
Let me know if this works. --[[User:Pcvitori|Pcvitori]] 11:52, 29 November 2006 (EST)