For some reason, when I highlight text in the mobile web version of a Framework7 app and touch on other places I expect the highlight to be gone... it's being retained. However, on desktop web, when I highlight text and click somewhere else, the highlight is gone.
How can I make the mobile web behave like the desktop web when highlighting a text?
I tried to preventDefault on touchstart hoping it would prevent the default retention or events... but it could be something else I'm missing/not getting because with or without preventDefault it's still the same issue.
$('.content').on('touchstart', function(e) {
e.preventDefault();
});
Thanks a lot!