In the cases where I wanted to filter info from a .CSV file
First, for the data to ensure that the data displays correctly, in Excel create a blank workbook, then go to
Data → Get Data → From File → From Text CSV → [choose file] → Import
#1071AC
mdls
filename
function toggleElement(tag, buttonId){
let div = document.getElementById(tag)
let btn = document.getElementById(buttonId)
if (div.classList.contains("hide")) {
div.classList.remove('hide')
btn.innerHTML="▾"
} else {
div.classList.add('hide')
#banner {
background-image: url(URL-TO-IMAGE);
background-repeat: no-repeat;
background-position: bottom;
background-size: cover;
height: 400px;
max-width: 1280px;
margin: 0 auto;
padding: 40px 0 0 0;
Source: https://nicolasgallagher.com/git-checkout-specific-files-from-another-branch/
git checkout BRANCHNAME -- PATH/FILENAME
<a href="https://twitter.com/intent/tweet?text=Today%20is%20%23GivingTuesdayCA%2C%20a%20day%20dedicated%20to%20giving%20back%21%20Join%20the%20global%20giving%20movement" target="_blank">Link</a>
<br><br>
<a href="https://twitter.com/intent/tweet?text=Lorem%20Ipsum%20%23EarthDay🌏" target="_blank">Link</a>
%23
encodes the hash
%20
encodes the space
ProTip: if you have Twitter Tip of The Tongue trying to find something you saw on twitter but can't find again because it might have been a retweet from someone you dont follow , use include:nativeretweets [what you saw]
and select People You Follow
// gets the value of the URL
let url = window.location.href;
// in our example, the urls are either Eng or Fre
// eg. http://localhost/Eng.html or http://localhost/Fre.html
// both Eng.html & Fre.html have an empty div with id 'iframe-container'
if (url.indexOf("Fre")>-1) {