Skip to content

Commit

Permalink
Create script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeetov authored Nov 20, 2023
1 parent f42a19d commit bbabc0c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// script.js

// Function to set Discord avatar if the image URL is not available
function setDiscordAvatar(element, discordId, defaultAvatar) {
element.src = `https://cdn.discordapp.com/avatars/${discordId}/${defaultAvatar}`;
}

document.addEventListener("DOMContentLoaded", function() {
// Check and set Discord avatars for each staff member
const avatars = document.querySelectorAll('.avatar');
avatars.forEach(avatar => {
avatar.onerror = function() {
// If the avatar URL fails, load the specified Discord avatar
const discordId = this.getAttribute('data-discord-id');
const defaultAvatar = this.getAttribute('data-default-avatar');
setDiscordAvatar(this, discordId, defaultAvatar);
};
});
});

0 comments on commit bbabc0c

Please sign in to comment.