Document.getElementById (Urgent)
Hi all ,Below javascript code is working fine in IE but not in Firefox and Chrome, Any Idea?
function Openreport() {
var report;
var year = document.getElementById('Contentplaceholder2_txtYear').value; ;
var month = document.getElementById('Contentplaceholder2_ddlMonth').value;
var status = document.getElementById('Contentplaceholder2_ddlLoanStatus').value;
report = window.open("LoanDetailsReport.aspx?year=" + year + "&month=" + month + "&status=" + status, "report", "width=200,height=100");
}