I'm using PhpQuery and I need to replace an "iframe" for another tag

The html file have an Iframe

<div id="content">
    <div class="pad3"></div>
        <iframe src="http://www.yahoo.com" id="iFrame"></iframe>
    <div class="pad2"></div>
</div>

Whit this piece of

$doc = phpQuery::newDocumentFileHTML('file.htm');
$doc->find('iframe')->replaceWith('<p>test</p>');

I expected this:

<div id="content">
    <div class="pad3"></div>
        <p>test</p>
    <div class="pad2"></div>
</div>

But nothing happens. Can someone give me some clues?

Best Regards

link|improve this question

60% accept rate
Did you try to use the pq() selector instead of find? – Shikiryu Feb 16 '11 at 13:16
feedback

1 Answer

Try using the id of your iframe element:

$doc->find('#iFrame')->replaceWith('<p>test</p>');
link|improve this answer
Hi, thanks for the reply. But does not work. Thanks again – André Feb 16 '11 at 12:56
feedback

Your Answer

 
or
required, but never shown

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