I am trying to convert a java properties file into a key value pairs that I can use in jquery. The property file sends information that looks like this:
company1=Google
company2=eBay
company3=Yahoo
And I want it in this form:
var obj = {
company1: Google,
company2: ebay,
company3: Yahoo
};
I am going to be accessing the property file through a URL.
Assuming your file comes exactly the way you've pasted it here, I would approach it something like this:
This post may be helpful if you need to support ES5 Create object from array