Skip to content

Instantly share code, notes, and snippets.

View bnicholas's full-sized avatar
🤌

Brian Nicholas bnicholas

🤌
View GitHub Profile
@bnicholas
bnicholas / ah.css
Last active November 16, 2023 03:11
ah.css
.info-table--ah-signature-table,
table.table.info-table.ah-signature-table {
font-family: Georgia;
}
table.table.info-table.ah-signature-table tr td {
border: none;
vertical-align: bottom;
text-align: center;
}
@bnicholas
bnicholas / chat.txt
Created April 1, 2022 00:11
Me and AJs chat
AJ - let pet = document.getElementById('#pet');
document.queryselectorAll("#pet");
// Obtain the 'shrink-grow' button, and assign it to the changeSize variable
let changeSize = document.getElementById('#shrink-grow')
AJ - am i on the right path
ME - querySelectorAll will give you a collection of results
querySelector will give you just the first or only one
Google getElementById and look at the syntax