Any one let me give an idea of implementing the window popup and accessing the js
variable of parent window to popup window with custom content.
<div id="modeltext" style="display:none">
<p id="linker" ></p>
<script type="text/javascript">
var news = "";
jQuery(document).ready(function() {
jQuery('#linker').html("<a href="+news+">"+news+"</a>");
});
</script>
This is for testing according to the concept.
</div>
<a href="#" id="testing" >Open a popup window</a>
JS:
jQuery('#testing').click(function() {
var w = window.open($('', "", "width=600, height=400, scrollbars=yes"));
alert(news);
var $w = $(w.document.body);
$w.html($('#modelText').html());
});
For example:
Let consider i have set of set of paragraph and simple html form. If some one click the link from the parent like (Open in New Window)
. Instead of url, i want to load the custom content and also i can't able to access the js variable value to the popup window. Not sure any suggestion would be great. I try to provide the js fiddle but the popup is not working.
Is there is a way to show the custom content to the popup instead of url and using the js variable from main window to the popup window ?(How to get the window popup load in the parent window).
Fiddle not working But here is the code
/
Any one let me give an idea of implementing the window popup and accessing the js
variable of parent window to popup window with custom content.
<div id="modeltext" style="display:none">
<p id="linker" ></p>
<script type="text/javascript">
var news = "http://google.";
jQuery(document).ready(function() {
jQuery('#linker').html("<a href="+news+">"+news+"</a>");
});
</script>
This is for testing according to the concept.
</div>
<a href="#" id="testing" >Open a popup window</a>
JS:
jQuery('#testing').click(function() {
var w = window.open($('', "", "width=600, height=400, scrollbars=yes"));
alert(news);
var $w = $(w.document.body);
$w.html($('#modelText').html());
});
For example:
Let consider i have set of set of paragraph and simple html form. If some one click the link from the parent like (Open in New Window)
. Instead of url, i want to load the custom content and also i can't able to access the js variable value to the popup window. Not sure any suggestion would be great. I try to provide the js fiddle but the popup is not working.
Is there is a way to show the custom content to the popup instead of url and using the js variable from main window to the popup window ?(How to get the window popup load in the parent window).
Fiddle not working But here is the code
http://jsfiddle/6cpup/11/
1 Answer
Reset to default 7EDIT:
I think it was caused because you incorrectly opened the window, check out this jsFiddle
var w = window.open('', "", "width=600, height=400, scrollbars=yes");
//alert(ICJX_JXPath);
var html = $("#modeltext").html();
$(w.document.body).html(html);
For the popup with custom HTML, check out this answer Open window in JavaScript with HTML inserted