this post was submitted on 12 Oct 2024
1006 points (99.2% liked)

Comic Strips

12237 readers
2237 users here now

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

The rules are simple:

Web of links

founded 1 year ago
MODERATORS
1006
The Test (www.smbc-comics.com)
submitted 4 days ago* (last edited 3 days ago) by [email protected] to c/[email protected]
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 3 days 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.