Within my Google app, I have the following HTML code that is supposed to call a function below. However, I am not getting any response. This script has been used consistently throughout my code until now.
<div id= "right_column">
<p>
<input type="button" value="Enter Grades for Selected Lessons"
onclick="google.script.run.withSuccessHandler(showMsgForLoginAttempt).generate_grades_for_lesson(this.parentNode)"/>
</p>
</div>
Below is the code for the function:
function generate_grades_for_lesson(formObject) {
msgBox("Hello");
}
Any assistance would be greatly appreciated.