tags:

views:

40

answers:

1

If I put a big iframe on the same page with all the content in the big iframe then can I put the search result onto the big iframe?

any code for it?

A: 

If i understand you right you want a iframe with the search results from an other page

<form target='theFrame' method='GET' action='http://www.google.nl/search'&gt;

<input type='text' name='q'/>
<input type='submit' value='Google it'/>
</form>
<iframe name='theFrame'></iframe>

this example is done with google search.

Spidfire