problem! can't write into a iframe document using safari

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • hypercube

    problem! can't write into a iframe document using safari

    Problem! I need to document.write( ) into iframe or ilayer in safari.

    In IE mac+pc the below code works a treat
    for(f=0; f<=int_q[arg_a].length-1; f++) {
    document.frames[0].document.write ('stuff'+f+'stu ff');
    }
    tried-
    document.getEle mentById('id'). document.write( '');
    but no luck, any suggestions?

  • Rob B

    #2
    Re: problem! can't write into a iframe document using safari



    Try:

    self.frames[0].document.write ('stuff'+f+'stu ff');

    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!

    Comment

    Working...