SNIPPETS
 Memorize[?]: 
  [+]   ???   =>  
LATEST UPDATE: 4/5/2022, 1:40:57 PM

Wrapping Content Blocks
<div style="width:300px;margin-right:10px;display:inline-block;vertical-align:top;">...</div>
 

    
  
  

Flexbox Wrapper - always clean arrangement
<div style="display:flex;justify-content:space-around;flex-wrap:wrap;">...</div>
 

    
  
  

Collapsible Item
<div onclick="this.nextSibling.nextSibling.style.display=='none'?this.nextSibling.nextSibling.style.display='inline-block':this.nextSibling.nextSibling.style.display='none';" style="cursor:pointer;">...</div><br><div style="display:none;">...</div>
 

    
  
  

ASCII-Codes

 

    
  
  

Thumbnail-Image Link
 

    
  
  

BOX-SHADOW/TEXT-SHADOW ANIMATED
onmouseover="this.style.transition='all .25s';this.style.boxShadow='5px 5px 5px #999999';" onmouseout="this.style.transition='all 2s';this.style.boxShadow='0px 0px 0px #999999';"
onmouseover="this.style.transition='all .25s';this.style.textShadow='3px 3px 5px #999999';" onmouseout="this.style.transition='all 2s';this.style.textShadow='0px 0px 0px #999999';"
 

    
  
  

GET QUERYSTRING VARIABLE
function getQueryString(variable){x=window.location.search.substring(indexOf(variable+'=')+variable.length+1).split("&");return x[0];}
 

    
  
  

Class-Toggle (here show more/less)
<div class="collapsible showMore">[...]<div style="cursor:pointer;" onclick="if(this.parentElement.classList.toString().indexOf('showMore')>-1){this.parentElement.classList.remove('showMore');this.parentElement.classList.add('showLess');this.innerHTML='<p>Show Less</p>';}else{this.parentElement.classList.remove('showLess');this.parentElement.classList.add('showMore');this.innerHTML='<p>Show More</p>';}"><p>Show More</p></div></div>

 

    
  
  

Display HTML tags correctly in container class="code"
<script>var code_line=document.getElementsByClassName("code");for(x=0;x<code_line.length;x++){code_line[x].innerHTML=code_line[x].innerHTML.replace(new RegExp(String.fromCharCode(60),'ig'),String.fromCharCode(38)+'lt;').replace(new RegExp(String.fromCharCode(62),'ig'),String.fromCharCode(38)+'gt;');}</script>
 

    
  
  


 [+]

NanoWiki - A Duct-Tape Solution [H]