سؤال

Let's suppose I have a form with some input fields and a submit button.

If I use the window.onunload, is it possible for me to trigger the submit button before the user leaves the webpage.

Which would be the correct way to implement it.

هل كانت مفيدة؟

المحلول

Something like the following might work:

$(window).unload(function() {
  document.getElementById('YOURBUTTONID').submit();
});
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top