Creating a scrollable Frame in the same page

S

success_ny

I cannot seem to find the answer to this rather simple question. Pardon
me if it looks illogial or silly.

Can I create a frame in the same page without referring to other html
files? I.e., I have a large dynamically created table in my JSP page. I
would like to place it inside the scrollable frame. If I put the whole
table into a separate file, I can easily do it by referring to that
HTML file from the 'src' attribute. But what if I want to create this
frame in the same page without referring to the outside html files?

I tried to place my table content inside the anchor link and then refer
to it from the frame like this:

<frameset cols="200">
<frame src="#framed" scrolling="yes" frameborder="1">
</frameset>

That obviously did not work.

Any ideas?
 
T

Thomas 'PointedEars' Lahn

Can I create a frame in the same page without referring to other html
files? I.e., I have a large dynamically created table in my JSP page. I
would like to place it inside the scrollable frame. If I put the whole
table into a separate file, I can easily do it by referring to that
HTML file from the 'src' attribute. But what if I want to create this
frame in the same page without referring to the outside html files?

I tried to place my table content inside the anchor link and then refer
to it from the frame like this:

<frameset cols="200">
<frame src="#framed" scrolling="yes" frameborder="1">
</frameset>

Use the `iframe' or the `object' element instead.
That obviously did not work.

Try

<img
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAPBAMAAADNDVhEAAAAD1BMVEX%2F%2F%2F8cHBz%2F%2F%2F%2BMjIxOTk4DFJMfAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxEAAAsRAX9kX5EAAAAHdElNRQfUBR0MMDTYAM%2BJAAAANklEQVR4nGNggAMTQWcQ5SgoKCjCwMAsCAIODCyCEL4hhALRIhBlYArOh8nD1MP0w8yDmw8BAHX0Bi31%2FaYsAAAAAElFTkSuQmCC"
alt="Pacman">

(courtesy of Eric B. Bednarz[1]). If that works in your UA,

src="data:text/html;charset=ISO-8859-1,&lt;!DOCTYPE html PUBLIC ..."

should work _there_ as well. Note that you will run into problems
with the Same Origin Policy[2] then as there is no domain.

Not a J(ava)Script/ECMAScript question, though. (Java != JavaScript)


PointedEars
___________
[1] [2]
<URL:http://www.mozilla.org/projects/security/components/same-origin.html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,528
Members
45,000
Latest member
MurrayKeync

Latest Threads

Top