<script>
$( ( ) => {
/*
begin change button url to random page
Version : 0.1d0
SS Version : 7.1
Dependancies : jQuery
By : Thomas Creedon < http://www.tomsWeb.consulting/ >
*/
// enter button block id without the #
const buttonBlockId = '#block-yui_3_17_2_1_1706584972305_1843 a';
const urlPrefix = '/read-this-trashh';
// do not change anything below, there be the borg here
let r = Math.floor ( Math.random ( ) * 100 );
r = String ( r ).padStart ( 3, '0' );
const url = urlPrefix + r;
$( '#' + buttonBlockId + ' a' ).attr ( 'href', url );
} );
/* end change button url to random page */
</script>