this post was submitted on 12 Oct 2024
1031 points (99.3% liked)

Comic Strips

13068 readers
2418 users here now

Comic Strips is a community for those who love comic stories.

The rules are simple:

Web of links

founded 2 years ago
MODERATORS
1031
The Test (www.smbc-comics.com)
submitted 2 months ago* (last edited 2 months ago) by ViperActual to c/[email protected]
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 2 months ago (1 children)

Without JS the button points to the RSS feed. This serves as a placeholder. The button was most likely copied and pasted.

Upon page load the website makes a call to the /rand.php endpoint, which returns a date in ISO8601 format. That is then used to produce the actual link.

				<script>
		$.get("/rand.php",function(data){
			$('.cc-navaux').attr('href','https://www.smbc-comics.com/comic/' + data);
		});
		</script>

(lines 172ff. of the HTML source) Why? Ask the author.