Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i develop some extension for google grome i inject at document_end event my js (+jquery) i set in manifest allFrames: true my match url has frameset

my goal get element by id inside one of frame

i do

//wait for load my frame
$("frame[name='header']).load(function() {
    //here I need get element by id inside this frame
});

how to do this properly?

PS: my frame is from the same domain

share|improve this question
chrome hasn't allFrames... correct is all_frames – vinnitu Jan 10 '11 at 20:39

1 Answer

You dont need to do document load, I assume your doing this from a content script. Just place the "run_at" manifest to be document_end and within your content script you check if the current URL is that frame page, then you will be in that Domain.

Something like this:

if(location.href == 'http://someweb.com/path/to/page.html') {
  var foo = document.getElementById('foo')

Something like that will get you started.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.