I want to display my JSF chart creator graph in another pop up window but its not displaying the image while we open the new window.I have embebde the graph inside
and while clicking on the print button I have used the following code.. function printDiv() { var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; disp_setting+="scrollbars=yes,width=650, height=500, left=100, top=25,status=yes"; var content_value = document.getElementById('drivingBehaviour:historyFrom:graphAssetDetail'); alert(content_value.innerHTML); var docprint=window.open("","",disp_setting); ...