My Firefox extension must do the following:
- Save the address of the current page
- Open a new page
- Put the address into the content of the new page if a button is pressed
The problem is how to save this address to a variable. If the address is saved in a variable through a function on the first page, the function on the new page, that must show the address when the button is pressed, doesn't have this variable. Should I use a global function or something?
function openTab() {
//Save an address of current page
path=content.location.href;
//Open new Tab and select it
var tab=gBrowser.addTab("chrome://intabeditor/content/editor.html");
var newTabBrowser = gBrowser.getBrowserForTab(tab);
gBrowser.selectedTab=tab;
}
function write() {
content.body.innerHTML=path;
}
The function openTab() is executed, when the proper button is pressed. The same with the write() function.