How to write a text file using jQuery

How to write a text file using jQuery

Hi Everyone,

I have a requirement to write a data to a text file using javascript or jquery. Please provide sample code or sample website links. 

Here I tried using ActiveXObject but it's not supporting in Android OS and also asking user  permission(popup) in Windows OS.   Is there any alternate way using jQuery that support both Windows & Android OS.

Below sample code is not supporting in Android OS: 
Sample Code:

        var fso = new ActiveXObject("Scripting.FileSystemObject");
        var s = fso.CreateTextFile(logFileName, true, false);
        s.WriteLine(sText);
        s.Close();

Advance thanking you.

Regards,
Hari