मैं एक पॉपअप विंडो बना रहा हूं जो hello.html पर जाता है। जब मैं पॉपअप विंडो (hello.html) बंद करता हूं तो मैं अपना मूल (मूल पृष्ठ) पुनः लोड करना चाहता हूं। मैं इसे काम करने के लिए प्रतीत नहीं कर सकता, लेकिन मैं करीब हूँ। यहाँ कोड मैं अब तक मुख्य पृष्ठ और hello.html पेज के लिए है ....पॉपअप बंद करने के बाद ताज़ा अभिभावक विंडो
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function open_win()
{
window.open("hello.html","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400");
}
</script>
<script language="JavaScript">
function refreshParent() {
window.opener.location.href = window.opener.location.href;
if (window.opener.hello.html)
{
window.opener.hello.html.close()
}
window.close();
}
</script>
</head>
<body>
<script type="text/javascript">
var d=new Date();
document.write(d);
</script>
<form>
<input type="button" value="Open Window" onclick="open_win()">
</form>
</body>
</html>
यहाँ hello.html है ...
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
</script>
</head>
<body>
Hello
</body>
</html>
कृपया इसे जांचें: http://stackoverflow.com/questions/18321323/submit-form-reload-parent-and-close-child/36855748#36855748 किसी की मदद कर सकता है – NoNaMe