Can someone help me figure out how to trigger the blur event on the document specifically for the iPhone?
I've been attempting to have it fire when a user switches windows in Safari, opens their bookmarks, or adds the page to their homescreen. However, none of these actions are causing the event to trigger.
Below is the code I'm using:
$(document).blur( function () {
document.title = "Ian Taylor";
});
I've tested with "document", "window", and "'body'", but so far nothing has been successful.