Index: lams_tool_daco/web/includes/javascript/dacoLearning.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_daco/web/includes/javascript/dacoLearning.js,v diff -u -r1.5.12.3 -r1.5.12.4 --- lams_tool_daco/web/includes/javascript/dacoLearning.js 12 Apr 2016 01:15:41 -0000 1.5.12.3 +++ lams_tool_daco/web/includes/javascript/dacoLearning.js 15 Feb 2017 05:29:07 -0000 1.5.12.4 @@ -9,16 +9,18 @@ } function finishSession(){ - document.getElementById("finishButton").disabled = true; + $('.btn-disable-on-submit').prop('disabled', true); document.location.href = finishUrl; return false; } function continueReflect(){ + $('.btn-disable-on-submit').prop('disabled', true); document.location.href=continueReflectUrl; } function saveOrUpdateRecord() { + $('.btn-disable-on-submit').prop('disabled', true); setHiddenFormValues(); document.getElementById("recordForm").submit(); }