Code-Snippets-Functions/Execute a function on a child site/LearnDash LMS/force-page-reload-on-restart-quiz-button-click.txt

13 lines
386 B
Text

add_action( 'wp_footer', function(){
?>
<script>
jQuery(document).ready(function() {
if ( jQuery('.wpProQuiz_content input[name="restartQuiz"]' ).length ) {
jQuery( '.wpProQuiz_content input[name="restartQuiz"]' ).click(function( event ) {
window.location.reload(true);
});
}
});
</script>
<?php
}, 999 );