Iframe Redirection
I'm currently have some issue with an iframe.
I have my iframe with a searchbox and i want to make this searchbox redirection when i click on go... But nothing works and i can't understand what i have to do...
http://img51.imageshack.us/i/issuec.png/
EDIT : 24/02/2011 So to be clear, my google chrome extension call as a content script : overlay.js Then this one will put at the end of the current page my "overlay.html" page.
So the problem come from that my .html is represented as a iframe and i don't see how i can redirect from this iframe
overlay.html
<form id="searchForm" action="#" onsubmit="searchBoxRedirection(this)" method="post">
<img id="logo" src="images/extension.png" alt="Logo"></img>
<input type="search" value="" name="searching">
<input type="submit" value="Go !" />
</form>
overlay.js
var overlay= {
init: function() {
this.injectoverlay();
//alert('Initialisation reussie');
},
injectoverlay: function() {
var body = $('body'),
overlayURL = chrome.extension.getURL("overlay.html"),
iframe = $('<iframe id="YouroverlayFrame" src="'+overlayURL+'">');
body.append(iframe);
iframe.show();
//alert('Injection reussie');
}
}
Tool.js
function searchBoxRedirection(form)
{
//alert(form.searching.value);
//tabs.create({url:"www.yahoo.fr"});
//parent.chrome.tabs.create({url: "http://blackweb20.com/"});
//parent.location.href='www.yahoo.fr';
//chrome.tabs.update({url:"http://www.siteduzero.com",selected:true});
//chrome.windows.create({url:"http://www.siteduzero.com"});
}
manifest.json
{
"background_page" : "background.html",
"browser_action" :
{
"default_icon" : "images/Extension.png"
},
"content_scripts":
[ {
"all_frames": true,
"css": ["css/overlay.css"],
"js": ["js/overlay.js"],
"matches": ["http://*/*"],
"run_at": "document_start"
} ],
"permissions" : ["tabs", "开发者_运维知识库unlimitedStorage", "http://*/*"],
"name" : "MyOverlay",
"version" : "1.1",
"description" : "Sindar Overlay"
}
Update
I've find a part of the answer by using :
function searchBoxRedirection(form)
{
window.top.location.href = "http://search.yahoo.com/search?p=" + form.searching.value;
}
But for the creation of new tab, or a new window it didn't work...
This question is the exact duplicate (word by word) of: Create a new chrome tab/window from a Iframe
To summarize, you have two choices:
- Use Messaging to redirect the page.
- Call "parent" within the iframe to do a redirect.
精彩评论