Is there a way to detect a right mouse click then refresh.
To detect a right mouse click I use:
jQuery(document).on("mousedown",myFunction); 
function myFunction(e){
...
if( e.button == 2 ) { 
}
}
In myFunction I wanna detect "refresh" item is clicked.
I use IE browser.
 
     
     
    