Looking for a solution!
I'm dealing with an iPad app that runs html5 pages... one specific page requires an email to be sent which triggers the Mail program using this code
var mailLink = 'mailto:' + recipientEmail +'?subject=PDFs&body='+contentInHtml
window.open(mailLink, 'Mailer');
But here's the problem - after sending the email and returning to the app, the page loses focus and gets stuck loading.
If anyone has a suggestion on how to prevent the page from losing focus, I'd greatly appreciate it!