WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('in-progress') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('pending') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

back button JavaScript | Loop and Break

back button JavaScript

Javascript has window.history.back() function which lands you to the previous page, where you clicked to come to this page. Example :

Example

<html>
<head>
<script>
function goBack()
  {
  window.history.back()
  }
</script>
</head>
<body>
	the quick brown red fox jumps over the lazy dog. 
        the quick brown red fox jumps over the lazy dog. 
        the quick brown red fox jumps over the lazy dog. 
        the quick brown red fox jumps over the lazy dog. 
        the quick brown red fox jumps over the lazy dog. 
        the quick brown red fox jumps over the lazy dog. 
        the quick brown red fox jumps over the lazy dog.

	<button value="Back" onclick="goBack()"
		style="border: 0; background: transparent; position: fixed; 
                bottom: 50px; right: 50px;">
		<img src="back.png" alt="back" />
	</button>

</body>
</html>
Share

You may also like...