var currentID = ($(this).attr('id')); //getting values of current time for generating the file name var dt = new Date(); var day = dt.getDate(); var month = dt.getMonth() + 1; var year = dt.getFullYear(); var hour = dt.getHours(); var mins = dt.getMinutes(); var postfix = day + "." + month + "." + year + "_" + hour + "." + mins; //creating a temporary HTML link element (they support setting file names) var a = document.createElement('a'); //getting data from our div that contains the HTML table var data_type = 'data:application/vnd.ms-excel'; var table_div = null; if (currentID == "aRenewal_Queue") { table_div = document.getElementById('divRenewal_Queue'); a.download = 'RenewalQuotes' + postfix + '.xls'; } else if (currentID == "aRenewal_Bind") { table_div = document.getElementById('divRenewal_Bind'); a.download = 'RenewalBinds' + postfix + '.xls'; } else { table_div = document.getElementById('divLobWise_Queue'); a.download = 'LOBWISELEADS' + postfix + '.xls'; } var table_html = table_div.outerHTML.replace(/ /g, '%20'); a.href = data_type + ', ' + table_html; //setting the file name //a.download = 'RenewalQuotes' + postfix + '.xls'; //triggering the function a.click(); //just in case, prevent default behaviour e.preventDefault();
IE
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)