Forum Moderators: open
I can change the height thusly:
<iframe src="test.html" id="myiframe" style="height:300px;width:450px;"></iframe>
<script>
var ppciframe = document.getElementById('myiframe');
myiframe.style.height=600;
</script>
Inside the iframe, my contents are wrapped by <div id="stuff">
Question is, how do I sense the height of "stuff" within the iframe and use that to redefine the height of the frame itself?
One of my ideas recently was to look up the image dimensions using the FSO object, then using ASP to write the html and javascript you can infact make your site automatically write the needed code for stuff like popups.
if you want to use the FSO object to write the image information into a database you could.
or if its already there then its even easier to make the popups, you just need to build your ASP javascript code.
if this is even remotely like what your intending give me more info and i can put up some code for ya.