First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 14 years ago

Mike Hansen gravatar image

It's easier to have the user's browser do the work if possible. I'm not sure what your specific use case is, but here is an interact which will load a page in a frame:

def iframe(url):
    html('<iframe src="%s" style="width: 100%%; height: 400px;"></iframe>'%(url))

@interact
def _(url='http://www.google.com'):
    iframe(url)