Evie
02-13-2007, 04:59 PM
I have a hidden window using the iframe:
<iframe src="addnewitem.php" name="hiddenWindowAddNew" style="display: none" width="680" height="300" frameborder="0">
<!-- Alternate content for non-supporting browsers -->
If you are seeing this, please upgrade your browser :)
... </iframe>
and on a list item select I want to show the hidden window. I have this code:
function addItem(){
alert('In Add Item');
window.hiddenWindowAddNew.style.display="inline";
}
When I select the item, the alert pops up, but the window does not show.
<iframe src="addnewitem.php" name="hiddenWindowAddNew" style="display: none" width="680" height="300" frameborder="0">
<!-- Alternate content for non-supporting browsers -->
If you are seeing this, please upgrade your browser :)
... </iframe>
and on a list item select I want to show the hidden window. I have this code:
function addItem(){
alert('In Add Item');
window.hiddenWindowAddNew.style.display="inline";
}
When I select the item, the alert pops up, but the window does not show.