Hi! I have the following code that will reload the parent web page and close the child web page -
<script type="text/Javascript">
opener.location.reload();
window.close("</script>
This code is in the child web page and works fine. The problem is that BEFORE I reload the parent web page, I want to pass a variable to it and store in a variable.
Is it as simple as -
<script type="text/Javascript">
opener.location.OrderFile1 = lvvar
opener.location.reload();
window.close("</script>
OrderFile1 is the text box on the parent web page
lvvar is the variable on the child web page i need passed to the parent web page
<script type="text/Javascript">
opener.location.reload();
window.close("</script>
This code is in the child web page and works fine. The problem is that BEFORE I reload the parent web page, I want to pass a variable to it and store in a variable.
Is it as simple as -
<script type="text/Javascript">
opener.location.OrderFile1 = lvvar
opener.location.reload();
window.close("</script>
OrderFile1 is the text box on the parent web page
lvvar is the variable on the child web page i need passed to the parent web page