Hired In A Flash.

The premier job platform for content creators, editors, and digital marketers. Get your next gig in minutes, not days.

About The Platform

We bridge the gap between high-growth YouTube channels and world-class creative talent.

0

Creators Joined

0

Jobs Posted

0

Partner Channels

Available Jobs

Featured Clients

TechVlog Pro

2.4M Subscribers

Gaming Beast

5.1M Subscribers

Finance Focus

800K Subscribers

Success Stories

"Found a full-time editing role within 48 hours of signing up. The process is incredibly smooth."


- Alex R. (Editor)

"Job In Minute filtered out the noise and brought me exactly the type of designers I needed."


- Sarah K. (Channel Owner)

Get In Touch

const firebaseConfig = { apiKey: "AIzaSyAsgjVxoK6eJuWl-ofbL1VLEHXld13_wV0", authDomain: "job-in-minute.firebaseapp.com", projectId: "job-in-minute", storageBucket: "job-in-minute.firebasestorage.app", messagingSenderId: "507249342731", appId: "1:507249342731:web:0db15814ee9c454c8f0a0e" }; // Initialize Firebase const app = initializeApp(firebaseConfig); const auth = firebase.auth(); const db = firebase.firestore(); const jobs = [ {title: "Frontend Developer", type: "Full-Time", desc: "HTML, CSS, JavaScript"}, {title: "Backend Developer", type: "Remote", desc: "Node.js, API Development"}, {title: "Graphic Designer", type: "Part-Time", desc: "Photoshop, Canva"}, {title: "Video Editor", type: "Contract", desc: "YouTube editing"} ]; function searchJobs() { const input = document.getElementById("searchInput").value.toLowerCase(); const filteredJobs = jobs.filter(job => job.title.toLowerCase().includes(input) ); displayJobs(filteredJobs); } function displayJobs(jobArray) { const jobList = document.getElementById("jobList"); jobList.innerHTML = ""; jobArray.forEach(job => { jobList.innerHTML += `
${job.type}

${job.title}

${job.desc}


`; }); } function applyJob(jobTitle) { alert("You applied for: " + jobTitle); } // Load jobs displayJobs(jobs); // Hamburger Menu Logic const hamburger = document.getElementById('hamburger'); const navLinks = document.getElementById('navLinks'); hamburger.addEventListener('click', () => { navLinks.classList.toggle('active'); const icon = hamburger.querySelector('i'); icon.classList.toggle('fa-bars'); icon.classList.toggle('fa-times'); }); // Close menu on link click document.querySelectorAll('.nav-links a').forEach(link => { link.addEventListener('click', () => { navLinks.classList.remove('active'); hamburger.querySelector('i').classList.add('fa-bars'); hamburger.querySelector('i').classList.remove('fa-times'); }); }); // Simple Counter Animation for Stats const counters = document.querySelectorAll('.counter'); const speed = 200; const startCounters = () => { counters.forEach(counter => { const updateCount = () => { const target = +counter.getAttribute('data-target'); const count = +counter.innerText; const inc = target / speed; if (count < target) { counter.innerText = Math.ceil(count + inc); setTimeout(updateCount, 1); } else { counter.innerText = target + "+"; } }; updateCount(); }); }; // Intersection Observer for Stats const observerOptions = { threshold: 0.5 }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if(entry.isIntersecting) { startCounters(); observer.unobserve(entry.target); } }); }, observerOptions); observer.observe(document.querySelector('.stats-container')); // Form Submit Logic document.getElementById('contactForm').addEventListener('submit', (e) => { e.preventDefault(); alert('Thank you! Your message has been sent to the Job In Minute team.'); e.target.reset(); });