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

Comic Strips

12233 readers
2385 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
1011
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] 6 points 3 days ago* (last edited 3 days ago) (1 children)

Oh right, i have third-party scripts blocked by default on mobile. Now it works.

Still, uh, why was it made that way, that it needs JS to random-load a page?

[–] [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.