I'm currently in the process of applying for an Internship through this Internship Link
One thing that caught my attention right away is the issue with uploading or pasting a cover letter. When attempting to upload or paste a cover letter, it redirects me to the homepage of the job invite site Job Invite, preventing the submission of a cover letter. However, the upload resume feature works smoothly while the paste resume option encounters the same problem.
Does anyone have any suggestions on how to fix this and successfully submit a cover letter?
Although I'm not an expert in web development, as I'm applying for an engineering position, I'm trying to troubleshoot this issue. By inspecting the element linked to the upload cover letter function, I discovered:
onclick="jvAddAttachment2('jvcoverletter', 'qLY9Vfwx')
This function gets triggered upon clicking the button. To investigate further, I accessed the JavaScript file for this webpage: Inspect Element -> Sources -> *careers_8.js?v=303. I attempted adding a basic alert statement, following guidance from W3Schools, for debugging purposes. Here's the updated code:
function jvAddAttachment2(id, companyId){
alert("I got here");
....
}
After saving the changes (ctrl + s), the Inspect Element console confirmed "Recompilation and update succeeded." However, when I clicked the link (via right-click and open new window), the alert box did not appear.
Does anyone know how to make the alert dialog show up? I've tried my best with the knowledge obtained from a single web development course haha.