fbpx

Join Our Team

CV Submission

Do you want to work with us? Please fill in your details below.


    First Name *




    Last Name *




    Email Address *


    Position Apply for *




    How you heard about us? *




    Additional Information




    Upload CV *


    Other Testimonials (e.g Certificates)


    ${fileName}

    `)
    $(filesList).first().css('display', 'flex')
    })
    $(document).on('click', '.fa-trash', (e) => {
    let file = e.currentTarget.parentNode.parentNode.parentNode
    $(file).find('input:file').val(null).change()
    $(file).find('.files-list').html('')
    $(file).find('.files-list').css('display', 'none')
    })
    $(document).find('.fa-angle-down').css('display', 'none')
    //just to remove the files list css from the screen once the form is submitted
    $('.wpcf7-response-output').bind('DOMSubtreeModified', function () {
    let responseText = document.getElementsByClassName('wpcf7-response-output')[0].innerHTML
    if(responseText.includes('Your CV has been submitted successfully')) {
    let allFiles = document.querySelectorAll('.files-list')
    allFiles.forEach(f => f.style.display = 'none')
    }
    });
    }