I want to use javascript and jquery to read data from a spreadsheet that looks like this:
ID# , Name , Date , Website
1 , Bob , 2/2/2012 , www.bob.com
2 , Mark , 1/1/1990 , www.Mark.com
And then generate a markup like below:
<body>
<img src="https">
<ul>
<li>Name</li>
<li>Date</li>
<ul>
</body>
where "https", "Name", and "Date" are gonna be replaced by the info from the spreadsheet.
I'm thinking to use the ID Number to choose which row I want to generate the code so there might be something like this:
<input type="text" value="">
<button type="button">Generate</button>
My question is what's the easiest way to do it without having to use ActiveX ?
Note: If there is any more information I can provide you with to aid with this question, please ask freely.
Thank you.