Is it possible to use jQuery ajax to look up specific values from a csv file as needed, on say a button click?
For example, say the CSV has the following structure:
country, capital, population, currency,
france, paris, 65950000, euro,
italy, rome, 59685227, euro,
Could I return only the population count for italy?
I have seen a couple examples where the entire csv file is converted into js arrays before any value is returned, though would prefer avoiding this method if possible as the csv file is likely to be very big.