Sign up to access all features of our service.
  • Job search
  • Favorites
  • Create a CV
    New
  • Salaries
  • Subscriptions

Electrician

HARTING Technology Group

${recruiterHTML || ''} ${infosHTML || ''} `.trim(); targetElement.insertAdjacentHTML('afterbegin', formattedHTML); data.splice(0, data.length, ...data.filter(item => !['name', 'photo', 'phone', 'companyCode', 'linkedin', 'location', 'region', 'positionArea'].includes(item.type))); } function processRecruiter(data){ const nameItem = data.find(({ type }) => type === 'name'); const photoItem = data.find(({ type }) => type === 'photo'); const companyCodeItem = data.find(({ type }) => type === 'companyCode'); const phoneItem = data.find(({ type }) => type === 'phone'); const linkedinItem = data.find(({ type }) => type === 'linkedin'); const name = nameItem?.value; // Prod Photo URL const photo = photoItem?.value.match(/ || ''; const phone = phoneItem?.value; const linkedin = linkedinItem?.value; const companyCode = companyCodeItem?.value; if(!nameItem || !name ) { removeOriginalElements(data); return; } const formattedHTML = `


${name ? `
${name}
` : ''} ${companyCode ? `
${companyCode}
` : ''} ${phone ? `${phone}` : ''} ${linkedin ? `${linkedin}` : ''} `.trim(); removeOriginalElements(data); return formattedHTML; } function removeOriginalElements(data) { data.forEach(item => { if (item.targetElement) { item.targetElement.remove(); } }); } function processInfos(data) { const titlesMap = { location: { "en-US": 'Location', "de-DE": 'Standort', "fr-FR": 'Emplacement', "es-ES": 'Ubicacin', "ro-RO": 'Loca?ie', "zh-CN": '??' }, region: { "en-US": 'Working Location', "de-DE": 'Region', "fr-FR": 'Rgion', "es-ES": 'Regin', "ro-RO": 'Regiunea', "zh-CN": '??' }, positionArea: { "en-US": 'Position Area', "de-DE": 'Bereich', "fr-FR": 'Zone de poste', "es-ES": 'rea de posicin', "ro-RO": 'Zon? de pozi?ie', "zh-CN": '????' } }; const iconsMap = [ { type: 'location', icon: '' }, { type: 'region', icon: '' }, { type: 'positionArea', icon: '' } ]; return iconsMap .map(({ type, icon }) => { const item = data.find(({ type: itemType }) => itemType === type); if (!item) return ''; const value = item?.value || ''; const targetElement = item?.targetElement; const title = titlesMap[type]?.[lang] || ''; targetElement?.remove(); return `


${icon}


${title}


${value}
`.trim(); }) .join(''); } function loadBoxStyles() { const style = document.createElement('style'); style.textContent = ` .jobColumnTwo { display: flex; padding: 24px !important; flex-direction: column; gap: 24px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.2); } .jobColumnTwo .info { display: grid; row-gap: 2rem; } .jobColumnTwo .info .info-block { display: grid; grid-template-columns: auto 1fr; column-gap: 2rem; align-items: center; } .jobColumnTwo .info .info-block .left { width: 40px; height: 40px; } .jobColumnTwo .info .info-block .left svg { width: 100%; height: 100%; margin: auto; } .jobColumnTwo .info .info-block .left.recruiter-image { background-color: var(--ha-primary-50); border-radius: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; } .jobColumnTwo .info .info-block .content { display: grid; } .jobColumnTwo .info .info-block .content * { line-height: 1; } .jobColumnTwo .info .info-block .content .title { font-family: 'customfc06ca90b7ef49ceb3831'; font-size: 18px; } .jobColumnTwo .info .info-block .content .company { margin-bottom: 0; } .jobColumnTwo .applylink.unify-button-container > div { display: none; } .jobColumnTwo .unify-button-container .btn-social-apply.medium { width: 100%; } .jobColumnTwo .applylink.unify-button-container .applyButton, a.apply-now-button { width: 100%; font-size: 18px; font-family: 'custom427e08d5df5f4a208ce62'; white-space: break-spaces; border: 1px solid transparent; display: inline-block; background-color: var(--ha-primary-50); color: var(--grey-100); padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; text-align: center; transition: all 0.2s linear; } a.apply-now-button { background-color: var(--grey-100); color: var(--ha-white) !important; } .jobColumnTwo .applylink.unify-button-container .applyButton:hover, a.apply-now-button:hover { color: var(--ha-white) !important; } .jobColumnTwo button.jobAlertComponent--button { width: 100%; font-size: 18px; border: 1px solid transparent; background-color: var(--ha-primary-50); padding: 10px 16px; line-height: 1.3333333; border-radius: 6px; text-align: center; } .jobColumnTwo .jobAlertComponent--container .jobAlertComponent--button-content { text-decoration: none; justify-content: center; color: var(--grey-100); hyphens: auto; } .jobColumnTwo .jobAlertComponent--container .jobAlertComponent--button-content svg { fill: var(--grey-100); width: 20px; height: 20px; } .jobColumnTwo .jobAlertComponent--container .jobAlertComponent--button-content, .jobColumnTwo .jobAlertComponent--container .jobAlertComponent--button-content svg { transition: fill 0.1s linear, color 0.2s linear, text-decoration 0.2s linear; } .jobColumnTwo .jobAlertComponent--container:hover .jobAlertComponent--button-content, .jobColumnTwo .jobAlertComponent--container:hover .jobAlertComponent--button-content svg { text-decoration: underline; color: var(--ha-white); fill: var(--ha-white); } `; document.head.appendChild(style); } /* p78 Apply Box Bottom */ const applyBoxBottomMaps = { "de-DE": { "headline": "Das passt? Jetzt bewerben!", "text": "Mit nur einem Klick zum Bewerbungsformular. Wir freuen uns auf das Kennenlernen!", "buttonText": "Jetzt bewerben", "print": "Stelle drucken" }, "en-US": { "headline": "That suits you? Apply now!", "text": "Just one click to the application form. We look forward to meeting you!", "buttonText": "Apply now", "print": "Print Job Posting" }, "es-ES": { "headline": "'Te conviene? Presente su solicitud ahora!", "text": "Slo tiene que hacer clic para acceder al formulario de solicitud. Estaremos encantados de conocerle.", "buttonText": "Presente su solicitud ahora", "print": "Publicacin de trabajos de impresin" }, "fr-FR": { "headline": "Cela vous convient? Postulez ds maintenant!", "text": "Il suffit d'un clic pour accder au formulaire de candidature. Nous nous rjouissons de vous rencontrer!", "buttonText": "Postulez ds maintenant", "print": "Imprimer l'annonce de l'emploi" }, "ro-RO": { "headline": "Aceasta vi se potrive?te? Aplica?i acum!", "text": "Doar un clic pentru a accesa formularul de cerere. A?tept?m cu ner?bdare s? v? cunoa?tem!", "buttonText": "Postarea lucr?rilor de imprimare" }, "zh-CN": { "headline": "?????? ??????!", "text": "????-?,???????. ????????!", "buttonText": "????????", "print": "??????" } }; function addApplyBoxBottom() { try { var jobElement = document.getElementsByClassName("jobDisplay")[0]; if (jobElement) { var applyBoxBottom = document.createElement("div"); applyBoxBottom.id = "applyboxbottom"; var applyButton = document.querySelector('.jobColumnTwo .applylink.unify-button-container .applyButton'); var applyLink = applyButton ? applyButton.getAttribute('href') : '#'; const textContent = applyBoxBottomMaps[lang] || applyBoxBottomMaps['en-US']; applyBoxBottom.innerHTML = `


${textContent.headline}


${textContent.text}


${textContent.buttonText} ${textContent.print} `; jobElement.appendChild(applyBoxBottom); loadApplyBoxBottomStyles(); } } catch (error) { console.error('Error! addApplyBoxBottom failed:', error); } } function loadApplyBoxBottomStyles() { const style = document.createElement('style'); style.textContent = ` #applyboxbottom { margin-top: 4rem; width: 100%; max-width: 1200px; padding: 24px; background-color: var(--ha-primary-50); } #applyboxbottom .applybox-content { display: grid; row-gap: 2rem; column-gap: 4rem; align-items: center; } @media only screen and (min-width: 767px) { #applyboxbottom .applybox-content { grid-template-columns: 2fr 1fr; } } #applyboxbottom .applybox-content .applybox-left .headline { color: var(--ha-grey-100); margin: 0 0 1rem 0; font-size: 20px; line-height: 28.8px; font-family: var(--font-bold), sans-serif; } #applyboxbottom .applybox-content .applybox-left .text { margin: 0; white-space: pre-line; font-size: 16px; } #applyboxbottom .applybox-content .applybox-right { display: flex; flex-direction: column; align-items: center; gap: 10px; } #applyboxbottom .applybox-content .applybox-right .printbutton { text-decoration: underline; font-family: 'custom53ff6fdd6b4b4798aafb5'; cursor: pointer; } #applyboxbottom .applybox-content .applybox-right .apply-now-button, #applyboxbottom .applybox-content .applybox-right .printbutton:hover { color: var(--ha-white) !important; } @media print { #applyboxbottom .applybox-content .applybox-right .printbutton { display: none; } } `; document.head.appendChild(style); } addApplyBoxBottom(); } } document.addEventListener('DOMContentLoaded', checkJobPage);


Skip to main content


  • Vacancies
  • Career Site
Search Jobs
  • Vacancies
  • Career Site
Language
  • Deutsch (Deutschland)
  • English (United States)
  • Espaol (Espaa)
  • Franais (France)
  • Limba Romn? (Romnia)
  • ???? (????)



View Profile


Job Description


Electrician and facilities Technician


Position type: Full-time


Type of contract: Permanent


HARTING stands for strong connections - across the globe. As one of the leading international suppliers of industrial connectivity, we are connecting customers to their digital future. And as an employer? We connect around 6,000 people at our headquarter in Espelkamp and at locations worldwide. Here you'll find great colleagues, as well as ever new opportunities and innovations revolving around IoT and artificial intelligence. In everything we do, we remain true to our roots: as a regionally connected family business that always stays firmly grounded in spite of our stellar high-tech. Here's to your unique future with us: Yours!

HARTING stands for strong connections - across the globe. As one of the leading international suppliers of industrial connectivity, we are connecting customers to their digital future. And as an employer? We connect around 6,000 people at our headquarter in Espelkamp and at locations worldwide. Here you'll find great colleagues, as well as ever new opportunities and innovations revolving around IoT and artificial intelligence. In everything we do, we remain true to our roots: as a regionally connected family business that always stays firmly grounded in spite of our stellar high-tech. Here's to your unique future with us: Yours!

Join HARTING! A leader in connectivity products and custom solutions.....

We are seeking an Electrician and Facilities Maintenance Technician to ensure an efficient operation, maintenance, and safety of building services and operational technology. Responsibilities include carrying out and documenting installation and maintenance work, conducting required inspections, managing parts procurement, and assisting with repairs and new constructions. The role also involves performing preventive maintenance, supporting maintenance plans, coordinating property maintenance activities, managing external service providers, troubleshooting installation services, and adhering to safety protocols and audits.

To succeed in this role, you will be highly driven to:
  • Carrying out and documenting installation and maintenance work in the assigned area of responsibility in the field of building services and operational technology
  • Carrying out mandatory and operationally prescribed inspections in accordance with training, qualifications and assignment
  • Determining parts requirements, procuring parts or arranging for parts to be procured. Assisting in the implementation of extensive repairs, conversions and new constructions under professional guidance
  • Independently perform maintenance work (e.g. preventive maintenance) according to existing maintenance plans or on the instructions of your supervisor, replacing parts at your own discretion if necessary. Coordinating the scope and timing of order execution.
  • Support the creation & execution of building and facilities maintenance plan.
  • Procure quotes from contractors and vendors when services or repairs are required
  • Create purchase requisitions in the system (i.e. SAP, others)
  • Update and maintain ticket system for facilities management software
  • Coordinate and manage all property maintenance activities (pest control, landscaping, snow removal, cleaning services, etc.)
  • Troubleshoot & maintain all installation services (air, power, plumbing, etc.) from main distribution panels to localized panels throughout the shop floor.
  • Follow safety protocols and participate in related committees, initiatives and audits.
  • Ensure compliance with environmental regulations and sustainability initiatives (e.g., waste management, energy efficiency measures).
  • Maintain accurate records and documentation for audits, inspections, and reporting purposes.
  • Participate in training and development programs to stay updated on technical advancements and safety standards.
  • Monitor and manage inventory of tools, equipment, and spare parts.
  • Respond promptly to emergency maintenance requests and incidents.
  • Support continuous improvement initiatives for facility operations and maintenance processes.


Skills and experience to thrive in this role:
  • Must hold a valid Illinois Electrician License
  • Licensed electrician or comparable professional training or certification
  • 5-7 years of professional experience / industry experience
  • Good written and spoken English skills & excellent problem-solving skills


HARTING Americas is a subsidiary of HARTING Technology Group, a German-based global leader in industrial connectivity solutions. We develop, manufacture, and sell the world's most durable and reliable products and solutions for use in Machinery & Robotics, Automation Devices, Rail & Transportation, Intralogistics & Conveyor Systems, Energy, and Datacenter market segments.

As a third generation, family-owned company, with over 75 years of history, we continue to create value and shape the future with technologies for people. You will discover that we work hard - to fulfill our personal, company, and customer goals, and in our commitment to our community with our holiday drives and our paid VTO (Voluntary Time Off). You will also discover that we like to have fun - like when we celebrate the holidays, host theme days and sweater parties, prost to Oktoberfest, and much more!

Visit us on LinkedIn!

HARTING USA offers an attractive total compensation package and employee benefits, including:

HARTING's Total Compensation Structure includes a Base Salary and Bonus Percentage.
  • Competitive hourly rate (commensurate with experience)
  • Monday to Friday from 8:00 AM to 5:00PM (Flexible)


Benefits:
  • 21 days PTO (Paid Time Off) to start - quickly earn more PTO as you stick with us (36 days max).
  • Medical, dental, and vision Insurance - several Blue Cross Blue Shield plan options to choose from.
  • Company-sponsored life, AD&D, and short- and long-term disability - at no cost to employee.
  • Paid parental leave, tuition and fitness reimbursement
  • 401(k) with a 4% dollar-for-dollar match - fully vested upon eligibility!

Benefits: Be a key player (US), Competitive compensation (US), Continuing Education Tuition Reimbursement (US), Give back (US), Have fun (US), Lead a Healthy Life (US), Onsite Caf (US), Take time off (US)
Information at a Glance


Recruiter Photo:


Contact person:


Company Code: HARTING Manufacturing Inc.


Recruiter phone:


LinkedIn URL Recruiter:


Job Location (Short): Elgin, Illinois, United States

Region: Elgin, IL


Position Area: Production Engineers / Technicians
Vacancy posted 4 hours ago
Similar jobs that could be interesting for youBased on the Electrician in Elgin, IL vacancy
  • $30 - $43 per hour

     ...Job Description Job Description Job Title: Maintenance Electrician Job Description We are seeking a skilled Maintenance Electrician to perform mechanical and electrical repairs on high-speed packaging machinery, including printing presses, die-cutting, flexogluing... 
    Suggested
    Weekly pay
    Contract work
    Temporary work
    Work at office
    Night shift

    Aerotek

    Elgin, IL
    7 days ago
  • $28 - $37 per hour

     ...Maintenance Electrician Hot Job IL - Elgin, IL 60120 Overview Salary Range $28.00 - $37.00 Hourly Category Facilities Description Primary Purpose: The Maintenance Mechanic is responsible for the upkeep of buildings and mechanical systems, such as heating... 
    Suggested
    Hourly pay
    Full time
    Long distance
    Monday to Friday
    Flexible hours
    Shift work
    Weekend work

    Schuman Cheese

    Elgin, IL
    2 days ago
  • $27 per hour

     ...Maintenance Electrician Elgin, IL Currently looking for a Maintenance Electrician to fill an opening with a company in Elgin, IL. Interested candidates should have at least one year of Maintenance Electrician experience in manufacturing. Responsibilities of the... 
    Suggested
    Hourly pay
    Day shift

    Technical People

    Elgin, IL
    2 days ago
  •  ...INDUSTRIAL ELECTRICIAN - LEVEL III Dynomax , a family-owned company, designs, manufactures, and develops high-precision machined components, injection molding and tooling, sub-assemblies, automated work cells, specialty machines, and machine tool spindles since 1... 
    Suggested
    Temporary work

    Dynomax

    South Elgin, IL
    4 hours ago
  • $35 - $45 per hour

     ...Description Tradesmen International is immediately hiring experienced Industrial Electricians for projects located in the Elgin, IL area . This is a first shift opportunity, and the pay rate is $35-$45/hour based on experience and skill level. If you are a Industrial... 
    Suggested
    Work at office
    Immediate start
    Day shift

    Tradesmen International

    Elgin, IL
    4 days ago
  • $32 - $48 per hour

     ...pharmaceutical fields. Quickly moving into other industries, we are a fast-paced and agile company looking for a best-in-class Journeyman Electrician willing to roll up their sleeves and exude a passion for the field! #MKD #Industria What you will do... Bend and... 
    Hourly pay
    Work at office
    Flexible hours
    Shift work

    MKD Electric

    Elgin, IL
    2 days ago
  • $35 - $45 per hour

     ...Job Description Job Description Overview Tradesmen International is immediately hiring experienced Industrial Electricians for projects located in the Elgin, IL area . This is a first shift opportunity, and the pay rate is $35-$45/hour based on experience... 
    Work at office
    Immediate start
    Day shift

    Tradesmen International, LLC

    Elgin, IL
    5 days ago
  • Job Description Job Description Benefits: ~401(k) ~401(k) matching ~ Bonus based on performance ~ Competitive salary ~ Free uniforms ~ Health insurance ~ Paid time off ~ Dental insurance ~ Vision insurance General Summary of Position: Work...
    For contractors
    Relocation
    Monday to Friday
    Shift work
    Night shift
    Day shift

    JTM Electrical & Technology, LLC

    West Dundee, IL
    17 days ago
  • $32 - $50 per hour

     ...pharmaceutical fields. Quickly moving into other industries, we are a fast-paced and agile company looking for a best-in-class Service Electrician willing to roll up their sleeves and exude a passion for the field! #MKD #Industria What you will do... Proven... 
    Hourly pay
    Work at office
    Flexible hours
    Shift work

    MKD Electric

    Plato Center, IL
    4 days ago
  • Description About GenServe: GenServe is the nation's leading independent provider of scheduled and emergency power generator maintenance, repair, and sales, primarily serving commercial customers. Established in 1990, GenServe has the largest team of EGSA-certified...
    Afternoon shift

    GenServe

    Elgin, IL
    2 days ago
  • Job Description Job Description Join Henderson Products Inc., located in Huntley, IL! We are the North American leader in the design, manufacture and up fit of multi-purpose equipment for heavy-duty work trucks specializing in snow and ice control and “Keeping America...
    Work experience placement
    Immediate start
    Shift work
    Night shift
    Day shift

    Henderson Products

    Huntley, IL
    12 days ago
  •  ...and/or EXPERIENCE High school diploma or general education degree (GED); at least 10 years related electrical maintenance or electrician experience and/or training; or equivalent combination of education and experience. Electrical trade school/certification strongly... 
    Immediate start
    Shift work
    Weekend work
    Day shift

    NOW HEALTH GROUP, INC.

    Bloomingdale, IL
    1 day ago
  •  ...Job Description Job Description TekPro is a technical recruiting firm that places mechanics, electricians, and engineers in the manufacturing industry. We are partnered with a modern food manufacturing plant in search of a high-skilled electrical technician that is... 
    For contractors
    Shift work
    Afternoon shift

    TekPro

    Saint Charles, IL
    26 days ago
  • $35 - $42 per hour

     ...Job Description Title : Industrial Maintenance Electrician Location : Bartlett, IL Hire Type : Direct Hire Shift : 2nd Shift: Monday-Friday, 2:00 PM - 10:30 PM (Required weekend coverage: One day per week, based on production needs) Compensation : $... 
    Monday to Friday
    Shift work
    Weekend work
    Afternoon shift
    1 day per week

    Sterling Engineering

    Bartlett, IL
    4 days ago
  •  ...Job Description Job Description Wave Electric Inc is seeking a skilled and reliable Journeyman Electrician to join our growing team. The ideal candidate will be responsible for the installation, maintenance, and repair of electrical systems for both residential and... 

    Wave Electric Inc

    Saint Charles, IL
    19 days ago
  • What does it take to work for Safety-Kleen? * Previous experience in mechanical, electrical, or appliance type repair * Manual labor experience * Organizational skills * Knowledge of inventory management Safety-Kleen, a Clean Harbors company, has a commitment to excellence...
    Night shift

    Clean Harbors

    Elgin, IL
    1 day ago
  • $34.89 per hour

    Company Description Senior Flexonics, a division of Senior PLC, is a global leader in the design and manufacturing of products for land vehicle emission control and industrial process control applications. As the world's largest manufacturer of flexible automotive...
    Hourly pay
    Permanent employment
    Temporary work
    For contractors
    H1b
    Immediate start
    Relocation
    Flexible hours
    Shift work
    Afternoon shift

    Senior Plc

    Bartlett, IL
    2 days ago
  • Field Service Technician Flender is a leading global supplier for mechanical drive systems and has the reputation for highest performance, innovation, quality, and reliability of mechanical components for 125 years. We're now hiring a talented Field Service Technician...
    Full time
    Work experience placement
    Work at office
    Local area
    Immediate start
    Flexible hours
    Weekend work

    Flender Corporation

    Elgin, IL
    5 days ago
  • $18 - $30 per hour

    About Us Accel Entertainment, Inc. (NYSE: ACEL) is a growing provider of locals-focused gaming and one of the largest terminal operators in the United States, supporting more than 27,000 electronic gaming terminals in over 4,300 third-party local and regional establishments...
    Long term contract
    Full time
    Temporary work
    Part time
    Work experience placement
    Local area
    Shift work
    Night shift
    Day shift
    Afternoon shift

    Accel Entertainment

    Elgin, IL
    5 days ago
  • A national leader in the innovation, distribution, installation, and maintenance of Steam and Sauna bathing environments for over 55 years, Bathing Brands hires the most talented and passionate people to help us serve the Health and Wellness trade. We are now seeking a...
    Hourly pay
    Full time
    Casual work
    Monday to Friday

    BATHING BRANDS INC

    Elgin, IL
    1 day ago
  •  ...solving some of the most complex, interdisciplinary challenges of our time. About the Role Base is looking for Apprentice Electricians to join our field installation crews in Northern Illinois. This is a unique opportunity to help launch Base Power's first... 
    Apprenticeship
    Shift work

    BasePower

    Bloomingdale, IL
    3 days ago
  • $25 - $50 per hour

    Commercial Kitchen Equipment Service Technician Position at Great Lakes South Town Up to $5,000 sign-on bonus for qualifying technicians "If you have at least 3 years of experience working with commercial kitchen and cooking equipment, we want you to apply!" Commercial...
    Hourly pay
    Relocation package
    Monday to Friday
    Weekend work
    Afternoon shift

    Performance Team

    Elgin, IL
    3 days ago
  • $38 - $42 per hour

     ...Journeyman Electrician Chicago Warehouse - Streamwood, IL 60107 Overview Salary Range $38.00 - $42.00 Hourly Position Type Full Time Job Shift Day Category Skilled Labor - Trades Description ION Solar is a rapidly expanding, full-service residential solar... 
    Hourly pay
    Full time
    Apprenticeship
    Shift work

    Ion Solar

    Streamwood, IL
    19 hours ago
  • $30 - $45 per hour

     ...Job Description Job Description Service Electrician – Mister Sparky Electric Location: Barrington, IL; Northbrook, IL Employment Type: Full-time Compensation: $30.00 – $45.00 / Hour Join America’s On-Time Electrician Mister Sparky Electric... 
    Full time
    Local area

    Mister Sparky of Barrington and Northbrook

    Barrington, IL
    12 days ago
  •  ...Job Description Job Description MCC Electric Inc. is looking for a experienced service electrician. The ideal candidate will have a minimum of 3 years of troubleshooting experience. Someone with construction only experience would not be a good candidate for this position... 
    Immediate start

    MCC Electric Inc

    Roselle, IL
    5 days ago
  • $25 - $50 per hour

    Description Position at Great Lakes South Town Up to $5,000 sign-on bonus for qualifying technicians "If you have at least 3 years of experience in commercial HVAC/R, we want you to apply!" Experienced Commercial HVAC/R Technicians Great Lakes...
    Hourly pay
    Relocation package
    Monday to Friday
    Weekend work
    Afternoon shift

    PT Holdings LLC

    Elgin, IL
    2 days ago
  • $16.71 per hour

    Position Type: Food Service/Food Service Technician Date Posted: 6/3/2026 Location: Kenyon Woods Middle School Date Available: 08/26/2026 Closing Date: Until Filled Position / Title: Food Service Technician (Part-Time) Bargaining Unit:...
    Hourly pay
    Contract work
    Part time
    Local area

    Illinois School District U-46

    South Elgin, IL
    3 days ago
  • $17 - $23 per hour

    Benefits Start Day 1 for Full-Time Colleagues - No Waiting Period! For more information about our benefits, see below! We are proud to be a member of the Rentokil family of companies, the global leader in Pest Control and other services across more than 90 countries...
    Hourly pay
    Full time
    Part time
    Local area
    Immediate start
    Monday to Friday

    Terminix International Company, L.P.

    South Elgin, IL
    1 day ago
  • Service Technician I - Manufacturing Duration: 2+ Months Contract Location: Elgin IL 60124 Shift: 1st Shift (6:30 am) Job description: Floor support: Support the end-to-end Infrastructure radio Customization Process Interface with MSI Systems Engineers...
    Contract work
    Shift work
    Weekend work
    Day shift

    Ageatia Global Solutions

    Elgin, IL
    2 days ago
  • $17 - $23 per hour

    Commercial Pest Control Technician The primary purpose of this role is to perform our industry leading pest management services for commercial customers. You will be responsible for identifying and eliminating pests from commercial properties by conducting thorough ...
    Hourly pay
    Full time
    Part time
    Local area
    Monday to Friday

    Terminix (Copesan)

    South Elgin, IL
    5 days ago

Do you want to receive more vacancies?

Subscribe and receive similar vacancies to Electrician. Be the first to apply!