Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created October 26, 2016 10:46
Show Gist options
  • Select an option

  • Save Restoration/9853677e3dd0a016e15281033d367517 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/9853677e3dd0a016e15281033d367517 to your computer and use it in GitHub Desktop.
15分毎にアラートを表示させる

#15分毎にアラートを表示させる

function quarterAlert(){
	var d = document.createElement('script');
	d.createTextNode=setInterval(function(){
	alert("15分経過");
	},900000);
}
quarterAlert();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment