• 9 Posts
  • 117 Comments
Joined 5 months ago
cake
Cake day: June 2nd, 2024

help-circle





  • Example: Type

    Once upon a midnight dreary  
    While I was pondering, weak and weary  
    Over many a quiant and curious volume of forgotten lore  
    

    To get:

    Once upon a midnight dreary
    While I was pondering, weak and weary
    Over many a quiant and curious volume of forgotten lore

    (You can highlight the source code to find the extra spaces at the end of each line). Note that this is different from paragraphs, which add spacing between them:

    Once upon a midnight dreary
    
    While I was pondering, weak and weary
    
    Over many a quiant and curious volume of forgotten lore
    

    Once upon a midnight dreary

    While I was pondering, weak and weary

    Over many a quiant and curious volume of forgotten lore



  • bleistift2@sopuli.xyztoComic Strips@lemmy.worldThe Test
    link
    fedilink
    English
    arrow-up
    0
    ·
    5 days ago

    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.