Following scenario: When selecting text on iOS Safari (lets assume a \"normal\" html page) an blue overlay occurs, indicating that you have selected a specific passage. Furt
Mobile Safari supports the selectionchange event, which fires on Document nodes:
selectionchange
Document
document.addEventListener("selectionchange", function() { alert("Selection changed!"); }, false);