Unable to download large data using javascript
问题 I have a large data in form of JSON object in the javascript. I have converted it into the string using JSON.stringify(). Now my use case is to provide this large string in a text file to the user. So for this i have written below code. HTML code <button id='text_feed' type="submit">Generate ION Feed</button> <a href="data:attachment/txt" id="textLink" download="feed.txt"></a> Javascript code var text = //huge string $("#text_feed").click(function() { _generateFeed(text); }); var