Hi I am new in Javascript. Actually I am using window.open() function.when i am click on link then it open new window and load all data but when i submit form then I am not able to get data from there. But It's working fine in Mozilla can someone help me. I am using code
<a href="JavaScript:viewTalentDetails(<%=objTimesheet.getUsrId()%>,
'<%=objTimeDetailData.getStartDate()%>','<%=objTimeDetailData.getEndDate()%>')"> test</a>
JS
function viewTalentDetails(usrid, stDt, endDt){
var prjid = document.getElementById("hdnPjId").value;
var prjname = document.getElementById("hdnPrjName").value;
newwindow=window.open("TalentDetailForTimesheet.action?hdnUsrid="+usrid+"&hdnstDt="+stDt+"&hdnendDt="+endDt+"&hdnPjId="+prjid+"&hdnPrjName="+prjname,"Talent Detail","menubar=no, height=600, width=800,resizable=yes,toolbar=no, scrollbars=yes");
}