Hi I'm developing in Oracle Application Express and I want to put a link on one of my pages that opens a pop-up of a different php page using javascript.
That's just the simple pop-up portion, but what i want to do is submit a form on that new php pop-up page right after the user clicks on the link.
Is this possible?
Thanks Jeff
Code:
<script language="JavaScript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=500,width=500,
scrollbar=yes,resizable=yes,directories=yes,
toolbar=yes,statusbar=yes,menubar=yes');
if (window.focus) {newwindow.focus(); }
return false;
}
//-->
</script>
<a href="http://blah.php" onclick="return popitup('http://blah.php')"
>Link to popup</a>
That's just the simple pop-up portion, but what i want to do is submit a form on that new php pop-up page right after the user clicks on the link.
Is this possible?
Thanks Jeff
Comment