Does anyone know how to get the blur event to fire on the document for the iPhone?
I'm trying to get it to fire either when a user changes windows in Safari, or when they open their bookmarks or when they decide to add the page to their homescreen. But none of these are firing it.
Here's my code:
$(document).blur( function () {
document.title = "Ian Taylor";
});
I've tried "document", "window", "'body'". Nothing seems to work.