How detect “refresh” event with prototype?
问题 How detect "refresh" event with prototype? A Cross-browser solution? Thanks, Celso 回答1: There's no way to detect refreshes in particular, but you can catch the browser before the page gets unloaded (which happens when the user refreshes the page - as well as when they 'move' to another page) In prototype this would look something like this: Event.observe(window, 'beforeunload', yourFunction); If you need to tell the difference, you could always bind some code to the links on your page that