From 077b8be3449a350ad27d294622f90d8b060060e7 Mon Sep 17 00:00:00 2001 From: Mike Olund Date: Thu, 16 Mar 2017 11:28:03 -0700 Subject: [PATCH] DIV-222 --- edivorce/apps/core/static/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edivorce/apps/core/static/js/main.js b/edivorce/apps/core/static/js/main.js index 3fca0a29..f1c2d1b4 100755 --- a/edivorce/apps/core/static/js/main.js +++ b/edivorce/apps/core/static/js/main.js @@ -35,7 +35,7 @@ $(function () { // when user click textbox beside radio button, check the associated radio button $(".other-textbox").on("click", function () { - $(this).parents().find(".radio_with_textbox").prop('checked', true); + $(this).parent().find('.radio-with-other').prop('checked', true); }); $("input[type=radio], input[type=checkbox], input[type=text], .response-textarea, .response-dropdown").on("change", ajaxOnChange);