jQuery Appending to Parent

Posted by Neurofluxation on Stack Overflow See other posts from Stack Overflow or by Neurofluxation
Published on 2010-05-24T10:18:46Z Indexed on 2010/05/24 10:21 UTC
Read the original article Hit count: 244

Filed under:
|
|
|

I have an iFrame on the page, how can I append an element to the parent page?

Current Code:

$content = $div("body").append( 
   $close = $div("Close")
);

Something like this would be nice:

$content = parent.$div("body").append(
  $close = $div("Close")
);

Any ideas StackOverflow wizards?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about html