Drag
loader

Search Blog, projects, Service or people.

Contact info

Head Office

Andavar Group

1/156, Andavar Garden,

Kavandampalayam,

Morattupalayam Post,

Uthukuli R.S,

Tirupur Dt,

Tamilnadu,

India-638752

Careers

Life at Andavar Group

Growing together. Building tomorrow.

Life at Andavar Group is built on purpose, progress, and performance. From construction and real estate to renewable energy and manufacturing, every team member plays a vital role in shaping sustainable growth and industry excellence.

We foster a culture of integrity, teamwork, and continuous learning. Employees are empowered with opportunities to innovate, lead, and grow alongside the organization. With strong leadership guidance and a commitment to operational excellence, we create an environment where ideas are valued, efforts are recognized, and achievements are celebrated. At Andavar Group, careers are not just jobs — they are journeys of growth, contribution, and long-term success.

// Manual validation avoids browser invalid-control focus issues with hidden nice-select inputs. var conName = form.find('[name="conName"]').val().trim(); var conEmail = form.find('[name="conEmail"]').val().trim(); var conPhone = form.find('[name="conPhone"]').val().trim(); var conMessage = form.find('[name="conMessage"]').val().trim(); var selectedService = form.find('[name="conService"]').val(); var selectedText = form.find('[name="conService"] option:selected').text().trim(); if (!conName) { alert('Please enter your full name.'); submitBtn.prop('disabled', false).html(originalText); return; } if (!conEmail) { alert('Please enter your email address.'); submitBtn.prop('disabled', false).html(originalText); return; } if (!conPhone) { alert('Please enter your phone number.'); submitBtn.prop('disabled', false).html(originalText); return; } var ajaxUrl = form.attr('action') || './assets/mail/careers-form.php'; console.log('careers-form submit to URL:', ajaxUrl); $.ajax({ url: ajaxUrl, type: 'POST', data: form.serialize(), success: function(response) { console.log('careers-form response:', response); if (response.trim() === 'Y') { submitBtn.html('Message Sent!'); form[0].reset(); setTimeout(function() { submitBtn.prop('disabled', false).html(originalText); }, 3000); } else { submitBtn.html('Failed to send (Server: ' + response.trim() + ')'); setTimeout(function() { submitBtn.prop('disabled', false).html(originalText); }, 4000); } }, error: function(xhr, status, error) { console.error('contact-form ajax error', status, error, xhr.responseText); submitBtn.html('Error: ' + status + ''); setTimeout(function() { submitBtn.prop('disabled', false).html(originalText); }, 4000); } }); }); });