I've been trying to get my head around this for a while, how do you remove a certain line from a TXT file using jQuery or JavaScript.
I understand you could use an AJAX method to process this server side, but is there a possibility of doing this in jQuery/JavaScript.
For example, say my text file "players.txt" has four lines:
Bob
Dave
Ethan
Sarah
When Ethan unloads the window, it should remove "Ethan" from the TXT file.
Thanks!