javascript - Disable browser closing while transaction ..? -


i working on 1 payment getway project boss give me 1 task disable browser closing while transaction process try last 2 days can't done 1 please me ....(jsp/servlet) in advance

dear,

  1. first of keep thing in mind can't prevent user close window or tab.
  2. only can remind him creating alert / confirm box if tries close window or tab.

now, coming point have add event name onbeforeunload using javascript. done :

window.onbeforeunload = function() {     return 'you have unsaved changes!'; } 

thanks & cheers :)


Comments

Popular posts from this blog

java - Run spring boot application error: Cannot instantiate interface org.springframework.context.ApplicationListener -

reactjs - React router and this.props.children - how to pass state to this.props.children -

Excel VBA "Microsoft Windows Common Controls 6.0 (SP6)" Location Changes -