Ai-users", link: "https://chat.whatsapp.com/IK1P2NVkWjDDYiXLoTHcK7" }, { title: "Instrumentation Engineer", icon: "ti-gauge", link: "https://chat.whatsapp.com/IYhvQGdDC1PDX7ojeqV2EJ" }, { title: "Interior Designer", icon: "ti-sofa", link: "https://chat.whatsapp.com/ES7Tr0AwYM66ZRd9kKlxZw" }, { title: "ITI / Technician / Machine Operator", icon: "ti-tool", link: "https://chat.whatsapp.com/KdO9T0RaQcnBHDaUv5xbN2" }, { title: "Maintenance / Service / Repairs", icon: "ti-settings", link: "https://chat.whatsapp.com/I8MjKlNjObf06oUY2h21lX" }, { title: "Mechanical Engineers", icon: "ti-engine", link: "https://chat.whatsapp.com/BQEUbIP6k7gJetIkAw1K7n" }, { title: "Medical Representative (MR)", icon: "ti-stethoscope", link: "https://chat.whatsapp.com/KBCtdUmyqfuDT7baVeaYFU" }, { title: "MEP Engineer", icon: "ti-plug", link: "https://chat.whatsapp.com/KfNK1lTZG1SE8Mc6vdHTdh" }, { title: "MIS", icon: "ti-chart-bar", link: "https://chat.whatsapp.com/EytKf5fifidFUVqEfVU5Wy" }, { title: "Personal Secretary / Assistant / Executive Assistant", icon: "ti-notebook", link: "https://chat.whatsapp.com/EMJ0rLDP6vC6jmhJ26jtD3" }, { title: "PLC Programmer", icon: "ti-cpu", link: "https://chat.whatsapp.com/LAeluCHZyUX106E2FsgyHI" }, { title: "Production", icon: "ti-box", link: "https://chat.whatsapp.com/CNEBUFCLEXlBXrqrCluV1c" }, { title: "Project", icon: "ti-clipboard-check", link: "https://chat.whatsapp.com/GdNLpFY01FuL4aF5F3hJWG" }, { title: "Purchase", icon: "ti-receipt", link: "https://chat.whatsapp.com/BI3GkC3zpvSEYwkZHvihlo" }, { title: "Quality", icon: "ti-shield-check", link: "https://chat.whatsapp.com/HpsHvNpAqJm48M60crD6yg" }, { title: "Receptionist", icon: "ti-phone", link: "https://chat.whatsapp.com/LHGhiAkyJK7CZWquedcMFk" }, { title: "Safety Officer", icon: "ti-helmet", link: "https://chat.whatsapp.com/CgNa4oAwvKbHjzTUphMJps" }, { title: "Sales / Marketing / Business Development", icon: "ti-trending-up", link: "https://chat.whatsapp.com/DUsk0oSm7NG1SAK80NLDrc" }, { title: "Sales Coordinator", icon: "ti-target", link: "https://chat.whatsapp.com/Jd24qBIA5z1DtjRANmWVoS" }, { title: "Service Coordinator", icon: "ti-git-branch", link: "https://chat.whatsapp.com/Jab8CQePGSCIeyRho3j0J2" }, { title: "Service Engineer", icon: "ti-tools", link: "https://chat.whatsapp.com/FmnwAVKok9yCko4EXyHCIH" }, { title: "Store / Warehouse / Logistic / Dispatch", icon: "ti-package", link: "https://chat.whatsapp.com/D23SFD7MjZBCz0ymuWqAwh" }, { title: "Supervisor", icon: "ti-eye", link: "https://chat.whatsapp.com/BqA1Jve8SpqCgrnKVBq6Bo" }, { title: "Telecaller / Telemarketing", icon: "ti-phone-call", link: "https://chat.whatsapp.com/CMpAccK9QeO5YUZgvS5nCV" }, { title: "Tender Executive / Manager", icon: "ti-file-invoice", link: "https://chat.whatsapp.com/Jf8a59KbUzp5WTaqOxoI5t" }, { title: "Tool Room / Tool Maker", icon: "ti-hammer", link: "https://chat.whatsapp.com/GpmMfonO2el5iwbsEIiHcU" }, { title: "CA / CA Inter / Semi Qualified CA", icon: "ti-certificate", link: "https://chat.whatsapp.com/HBQDh9eo6rh7pAasgn93vN" } ]; var grid = document.getElementById('wjg-grid'); var noRes = document.getElementById('wjg-no-results'); function wjgRender(list) { grid.innerHTML = ''; if (list.length === 0) { noRes.style.display = 'block'; return; } noRes.style.display = 'none'; list.forEach(function (job) { var col = document.createElement('div'); col.className = 'col-6 col-sm-4 col-md-3 col-lg-2'; col.innerHTML = '
'; grid.appendChild(col); }); } window.wjgFilter = function () { var q = document.getElementById('wjg-search').value.toLowerCase().trim(); var filtered = q ? jobs.filter(function (j) { return j.title.toLowerCase().indexOf(q) > -1; }) : jobs; document.getElementById('wjg-count').textContent = filtered.length; wjgRender(filtered); }; wjgRender(jobs); })();