I have a form in an html file that looks something like this:
<td>appKey</td>
<td><input type="text" id="_appKey" size="40"></td>
</tr>
<tr>
<td>bundleId</td>
<td><input type="text" id="_bundleId" size="40"></td>
</tr>
<tr>
<td>serverURL</td>
<td><input type="text" id="_serverURL" size="40"></td>
</tr>
I will fill out these text areas with information, and I need a function that will allow me to save the info I typed into the fields, to a txt file on my computer (using javascript). Perferbly using a key=value formation (key is the id i gave the field and value is the info i entered into the field)
Any help will be greatly appreciated.