@AhmedAl_Attar I'd like to know how to dynamically use the path/folder name in HTML. In the following code, you can see that path name (/Environments/Dev/Jobs/html_job/prompts) is hard coded and it has the folder name called 'DEV'. This folder name is TEST and PROD, when we move this code to test and production environments respectively. I don't wish to manually correct this path when we promote this code to higher enviornments.
What would be the efficient way to handle this?
<div class="divTableCell">
<select name="_division_sel" id="_division_sel" class="jobexec_select" multiple hidden onchange="get_data('pf_ncnm_sel', '_division_sel', '/Environments/Dev/Jobs/html_job/prompts', 'DIVISION', 'SECTION', 'pt_div_map.sas7bdat' )">
<option value="Insurance">Insurance</option>
<option value="Life">Life</option>
<option value="NonLife">NonLife</option>
<option value="Loan">Loan</option>
</select>
</div>
... View more