aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/fixmystreet.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/js/fixmystreet.js')
-rw-r--r--web/js/fixmystreet.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/web/js/fixmystreet.js b/web/js/fixmystreet.js
index 7d8c940d9..51fa01559 100644
--- a/web/js/fixmystreet.js
+++ b/web/js/fixmystreet.js
@@ -31,16 +31,16 @@ $(function(){
// Questionnaire hide/showings
if (!$('#been_fixed_no').prop('checked') && !$('#been_fixed_unknown').prop('checked')) {
- $('#another_qn').hide();
+ $('.js-another-questionnaire').hide();
}
- $('#been_fixed_no').click(function() {
- $('#another_qn').show('fast');
+ $('#been_fixed_no').on('click', function() {
+ $('.js-another-questionnaire').show('fast');
});
- $('#been_fixed_unknown').click(function() {
- $('#another_qn').show('fast');
+ $('#been_fixed_unknown').on('click', function() {
+ $('.js-another-questionnaire').show('fast');
});
- $('#been_fixed_yes').click(function() {
- $('#another_qn').hide('fast');
+ $('#been_fixed_yes').on('click', function() {
+ $('.js-another-questionnaire').hide('fast');
});
// Form validation