Skip to content

Instantly share code, notes, and snippets.

View iamFoxx's full-sized avatar
😃
Always learning.

Jerry Almeida iamFoxx

😃
Always learning.
View GitHub Profile
@iamFoxx
iamFoxx / AlertDialogProvider.tsx
Created November 21, 2024 17:47 — forked from alexanderson1993/AlertDialogProvider.tsx
A multi-purpose alert/confirm/prompt replacement built with shadcn/ui AlertDialog components.
"use client";
import * as React from "react";
import { Input } from "@/components/ui/Input";
import { Button } from "@/components/ui/Button";
import {
AlertDialog,
AlertDialogContent,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogDescription,
@iamFoxx
iamFoxx / automatic_utm.js
Created January 13, 2024 01:19
Collecting UTMs and automatic form filling
(function() {
function cretaeField(name, value, form) {
if (value === null) return;
var input = document.createElement('input');
input.type = 'hidden';
input.name = name;
input.value = value;
form.appendChild(input);
}
const valueExists = (value) => {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Event Delegation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
margin: 1em auto;