I have a new FormData then added caption as key.
var formData = new FormData();
formData.append('caption','abc');
How do I get abc from it? I tried using .get but it's not supported in mobile chrome.
formData.get('caption'); // this will not work by default in chrome.
Is there anywhere I can get caption value?