This is what I was thinking of doing, though perhaps as a Virtual  
page. My Ruby is better than my javascript... But I will give it a  
thought. Thanks!


Keith Bingman
Tel: +49-7731-79838380
[EMAIL PROTECTED]
http://keithbingman.com




On May 29, 2007, at 4:47 PM, Oliver Baltzer wrote:

> Keith Bingman wrote:
>> Yes. That is clear. I am trying to link directly to a page with an
>> iFrame from an external link. Basically a bookmark. I think I know
>> how to do it, but thought I see if there was something I was
>> overlooking. Doesn't seem to be.
>
> I understand. I would probably use Javascript to make this work. For
> example a URL http://host/frameset.html?content.html would load the
> frameset and a Javascript within this page can evaluate the query  
> string
> and load the appropriate page into the frame. This script may or  
> may not
>   work:
>
> <script type="text/javascript">
> file = "default_content.html";
> if (location.search.length > 0) {
>    file = location.search.substring(1);
> }
> document.write('<iframe src="' + file + '" name="contentframe"');
> document.write(' width="400px" height="300px" frameborder="0" ');
> document.write('scrolling="no">No Iframes</iframe>');
> </script>
>
> Oliver
> _______________________________________________
> Radiant mailing list
> Post:   [email protected]
> Search: http://radiantcms.org/mailing-list/search/
> Site:   http://lists.radiantcms.org/mailman/listinfo/radiant

_______________________________________________
Radiant mailing list
Post:   [email protected]
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant

Reply via email to