diff --git a/src/modules/behavior/form.js b/src/modules/behavior/form.js index 917fd361c..a4dc56a34 100755 --- a/src/modules/behavior/form.js +++ b/src/modules/behavior/form.js @@ -714,8 +714,8 @@ $.fn.form.settings = { if($form.find('#' + fieldIdentifier).size() > 0) { matchingValue = $form.find('#' + fieldIdentifier).val(); } - else if($form.find('[name=' + fieldIdentifier +']').size() > 0) { - matchingValue = $form.find('[name=' + fieldIdentifier + ']').val(); + else if($form.find('[name="' + fieldIdentifier +'"]').size() > 0) { + matchingValue = $form.find('[name="' + fieldIdentifier + '"]').val(); } else if( $form.find('[data-validate="'+ fieldIdentifier +'"]').size() > 0 ) { matchingValue = $form.find('[data-validate="'+ fieldIdentifier +'"]').val();