I don´t really find an answer of my question, if it´s possible to detect by jquery if a user klick on the "Refresh/Reload Button" on a modern browser?
I found ...
window.onbeforeunload = function(e) {
// Action
};
... but the problem at this way is, that it always fires if the page gets loaded. But if I use the forward button and then the back button it should not do this, only at pressing the refresh button. Is that possible? And is there a solution for all modern browsers?
Edit: Thx for the link, I will try the cookie example.