How do I pull data and display it in html from a Excel file using Javascript?
I have a code like this:
var myFirstjson = { "firstName":"John",
"LastName":"Lenon",
"age":23,
};
document.writeln(myFirstjson["firstName"]+"<br/>");
document.writeln(myFirstjson["LastName"]+"<br/>");
document.writeln(myFirstjson["age"]+"<br/>");
</script>
</body>
</html>
What I need to do is parameterize the values in the first name last name and age from an Excel file located in d:\file.xls