Skip to content

Instantly share code, notes, and snippets.

View ksgolu's full-sized avatar
💭
just chill! do coding

Kumar Satyam ksgolu

💭
just chill! do coding
View GitHub Profile
(function () {
var SHOW_POPUP = true; // ← set to false to completely disable (nothing added to DOM)
if (!SHOW_POPUP) return;
// 1. Load Bootstrap CSS via CDN
if (!document.querySelector('link[href*="bootstrap"]')) {
var link = document.createElement("link");
link.rel = "stylesheet";
link.href =
"https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css";