<video id="myVideo3" width="320" height="240" controls>
  <source src="tutorial3.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>

<script>
  var video3 = document.getElementById('myVideo3');
  
  video3.onpause = function() {
    if (confirm('آیا می‌خواهید زمان توقف پخش را ذخیره کنید؟')) {
      var currentTime = video3.currentTime;
      localStorage.setItem('pausedTime3', currentTime);
      alert('زمان توقف پخش ذخیره شد.');
    }
  };
</script>