hi,
This is my jquery export to excel script. it is working in chrome but not working in IE 9,10,11 .
$(document).ready(function () {
$("#export").click(function (e) {
window.open('data:application/vnd.ms-excel,' + encodeURIComponent($('#tblExport').html()));
e.preventDefault();
});
});
In IE it is showing like this in URL bar.
data:application/vnd.ms-excel,
| country_ab | country | region_ab | world_area_ab | last_updated | notes_country_ab | parent_country_ab | restriction | LC_id | has_states |
|---|---|---|---|---|---|---|---|---|---|
neel kPosted Jul 29, 2015, 11:03 AM
Manas MohapatraPosted Jul 29, 2015, 10:34 AM
neel kPosted Jul 29, 2015, 9:58 AM
Manas MohapatraPosted Jul 29, 2015, 12:50 AM