forked from WordPress/secure-custom-fields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_acf-validation.js
1162 lines (1024 loc) · 25.4 KB
/
_acf-validation.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
( function ( $, undefined ) {
/**
* Validator
*
* The model for validating forms
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return void
*/
var Validator = acf.Model.extend( {
/** @var string The model identifier. */
id: 'Validator',
/** @var object The model data. */
data: {
/** @var array The form errors. */
errors: [],
/** @var object The form notice. */
notice: null,
/** @var string The form status. loading, invalid, valid */
status: '',
},
/** @var object The model events. */
events: {
'changed:status': 'onChangeStatus',
},
/**
* addErrors
*
* Adds errors to the form.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param array errors An array of errors.
* @return void
*/
addErrors: function ( errors ) {
errors.map( this.addError, this );
},
/**
* addError
*
* Adds and error to the form.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param object error An error object containing input and message.
* @return void
*/
addError: function ( error ) {
this.data.errors.push( error );
},
/**
* hasErrors
*
* Returns true if the form has errors.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return bool
*/
hasErrors: function () {
return this.data.errors.length;
},
/**
* clearErrors
*
* Removes any errors.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return void
*/
clearErrors: function () {
return ( this.data.errors = [] );
},
/**
* getErrors
*
* Returns the forms errors.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return array
*/
getErrors: function () {
return this.data.errors;
},
/**
* getFieldErrors
*
* Returns the forms field errors.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return array
*/
getFieldErrors: function () {
// vars
var errors = [];
var inputs = [];
// loop
this.getErrors().map( function ( error ) {
// bail early if global
if ( ! error.input ) return;
// update if exists
var i = inputs.indexOf( error.input );
if ( i > -1 ) {
errors[ i ] = error;
// update
} else {
errors.push( error );
inputs.push( error.input );
}
} );
// return
return errors;
},
/**
* getGlobalErrors
*
* Returns the forms global errors (errors without a specific input).
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return array
*/
getGlobalErrors: function () {
// return array of errors that contain no input
return this.getErrors().filter( function ( error ) {
return ! error.input;
} );
},
/**
* showErrors
*
* Displays all errors for this form.
*
* @since ACF 5.7.5
*
* @param {string} [location=before] - The location to add the error, before or after the input. Default before. Since 6.3.
* @return void
*/
showErrors: function ( location = 'before' ) {
// bail early if no errors
if ( ! this.hasErrors() ) {
return;
}
// vars
var fieldErrors = this.getFieldErrors();
var globalErrors = this.getGlobalErrors();
// vars
var errorCount = 0;
var $scrollTo = false;
// loop
fieldErrors.map( function ( error ) {
// get input
var $input = this.$( '[name="' + error.input + '"]' ).first();
// if $_POST value was an array, this $input may not exist
if ( ! $input.length ) {
$input = this.$( '[name^="' + error.input + '"]' ).first();
}
// bail early if input doesn't exist
if ( ! $input.length ) {
return;
}
// increase
errorCount++;
// get field
var field = acf.getClosestField( $input );
// make sure the postbox containing this field is not hidden by screen options
ensureFieldPostBoxIsVisible( field.$el );
// show error
field.showError( error.message, location );
// set $scrollTo
if ( ! $scrollTo ) {
$scrollTo = field.$el;
}
}, this );
// errorMessage
var errorMessage = acf.__( 'Validation failed' );
globalErrors.map( function ( error ) {
errorMessage += '. ' + error.message;
} );
if ( errorCount == 1 ) {
errorMessage += '. ' + acf.__( '1 field requires attention' );
} else if ( errorCount > 1 ) {
errorMessage += '. ' + acf.__( '%d fields require attention' ).replace( '%d', errorCount );
}
// notice
if ( this.has( 'notice' ) ) {
this.get( 'notice' ).update( {
type: 'error',
text: errorMessage,
} );
} else {
var notice = acf.newNotice( {
type: 'error',
text: errorMessage,
target: this.$el,
} );
this.set( 'notice', notice );
}
// If in a modal, don't try to scroll.
if ( this.$el.parents( '.acf-popup-box' ).length ) {
return;
}
// if no $scrollTo, set to message
if ( ! $scrollTo ) {
$scrollTo = this.get( 'notice' ).$el;
}
// timeout
setTimeout( function () {
$( 'html, body' ).animate(
{
scrollTop: $scrollTo.offset().top - $( window ).height() / 2,
},
500
);
}, 10 );
},
/**
* onChangeStatus
*
* Update the form class when changing the 'status' data
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param object e The event object.
* @param jQuery $el The form element.
* @param string value The new status.
* @param string prevValue The old status.
* @return void
*/
onChangeStatus: function ( e, $el, value, prevValue ) {
this.$el.removeClass( 'is-' + prevValue ).addClass( 'is-' + value );
},
/**
* validate
*
* Validates the form via AJAX.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param object args A list of settings to customize the validation process.
* @return bool True if the form is valid.
*/
validate: function ( args ) {
// default args
args = acf.parseArgs( args, {
// trigger event
event: false,
// reset the form after submit
reset: false,
// loading callback
loading: function () {},
// complete callback
complete: function () {},
// failure callback
failure: function () {},
// success callback
success: function ( $form ) {
$form.submit();
},
} );
// return true if is valid - allows form submit
if ( this.get( 'status' ) == 'valid' ) {
return true;
}
// return false if is currently validating - prevents form submit
if ( this.get( 'status' ) == 'validating' ) {
return false;
}
// return true if no ACF fields exist (no need to validate)
if ( ! this.$( '.acf-field' ).length ) {
return true;
}
// if event is provided, create a new success callback.
if ( args.event ) {
var event = $.Event( null, args.event );
args.success = function () {
acf.enableSubmit( $( event.target ) ).trigger( event );
};
}
// action for 3rd party
acf.doAction( 'validation_begin', this.$el );
// lock form
acf.lockForm( this.$el );
// loading callback
args.loading( this.$el, this );
// update status
this.set( 'status', 'validating' );
// success callback
var onSuccess = function ( json ) {
// validate
if ( ! acf.isAjaxSuccess( json ) ) {
return;
}
// filter
var data = acf.applyFilters( 'validation_complete', json.data, this.$el, this );
// add errors
if ( ! data.valid ) {
this.addErrors( data.errors );
}
};
// complete
var onComplete = function () {
// unlock form
acf.unlockForm( this.$el );
// failure
if ( this.hasErrors() ) {
// update status
this.set( 'status', 'invalid' );
// action
acf.doAction( 'validation_failure', this.$el, this );
// display errors
this.showErrors();
// failure callback
args.failure( this.$el, this );
// success
} else {
// update status
this.set( 'status', 'valid' );
// remove previous error message
if ( this.has( 'notice' ) ) {
this.get( 'notice' ).update( {
type: 'success',
text: acf.__( 'Validation successful' ),
timeout: 1000,
} );
}
// action
acf.doAction( 'validation_success', this.$el, this );
acf.doAction( 'submit', this.$el );
// success callback (submit form)
args.success( this.$el, this );
// lock form
acf.lockForm( this.$el );
// reset
if ( args.reset ) {
this.reset();
}
}
// complete callback
args.complete( this.$el, this );
// clear errors
this.clearErrors();
};
// serialize form data
var data = acf.serialize( this.$el );
data.action = 'acf/validate_save_post';
// ajax
$.ajax( {
url: acf.get( 'ajaxurl' ),
data: acf.prepareForAjax( data, true ),
type: 'post',
dataType: 'json',
context: this,
success: onSuccess,
complete: onComplete,
} );
// return false to fail validation and allow AJAX
return false;
},
/**
* setup
*
* Called during the constructor function to setup this instance
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $form The form element.
* @return void
*/
setup: function ( $form ) {
// set $el
this.$el = $form;
},
/**
* reset
*
* Rests the validation to be used again.
*
* @date 6/9/18
* @since ACF 5.7.5
*
* @param void
* @return void
*/
reset: function () {
// reset data
this.set( 'errors', [] );
this.set( 'notice', null );
this.set( 'status', '' );
// unlock form
acf.unlockForm( this.$el );
},
} );
/**
* getValidator
*
* Returns the instance for a given form element.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $el The form element.
* @return object
*/
var getValidator = function ( $el ) {
// instantiate
var validator = $el.data( 'acf' );
if ( ! validator ) {
validator = new Validator( $el );
}
// return
return validator;
};
/**
* A helper function to generate a Validator for a block form, so .addErrors can be run via block logic.
*
* @since ACF 6.3
*
* @param $el The jQuery block form wrapper element.
* @return bool
*/
acf.getBlockFormValidator = function ( $el ) {
return getValidator( $el );
};
/**
* A helper function for the Validator.validate() function.
* Returns true if form is valid, or fetches a validation request and returns false.
*
* @since ACF 5.6.9
*
* @param object args A list of settings to customize the validation process.
* @return bool
*/
acf.validateForm = function ( args ) {
return getValidator( args.form ).validate( args );
};
/**
* acf.enableSubmit
*
* Enables a submit button and returns the element.
*
* @date 30/8/18
* @since ACF 5.7.4
*
* @param jQuery $submit The submit button.
* @return jQuery
*/
acf.enableSubmit = function ( $submit ) {
return $submit.removeClass( 'disabled' ).removeAttr( 'disabled' );
};
/**
* acf.disableSubmit
*
* Disables a submit button and returns the element.
*
* @date 30/8/18
* @since ACF 5.7.4
*
* @param jQuery $submit The submit button.
* @return jQuery
*/
acf.disableSubmit = function ( $submit ) {
return $submit.addClass( 'disabled' ).attr( 'disabled', true );
};
/**
* acf.showSpinner
*
* Shows the spinner element.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $spinner The spinner element.
* @return jQuery
*/
acf.showSpinner = function ( $spinner ) {
$spinner.addClass( 'is-active' ); // add class (WP > 4.2)
$spinner.css( 'display', 'inline-block' ); // css (WP < 4.2)
return $spinner;
};
/**
* acf.hideSpinner
*
* Hides the spinner element.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $spinner The spinner element.
* @return jQuery
*/
acf.hideSpinner = function ( $spinner ) {
$spinner.removeClass( 'is-active' ); // add class (WP > 4.2)
$spinner.css( 'display', 'none' ); // css (WP < 4.2)
return $spinner;
};
/**
* acf.lockForm
*
* Locks a form by disabling its primary inputs and showing a spinner.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $form The form element.
* @return jQuery
*/
acf.lockForm = function ( $form ) {
// vars
var $wrap = findSubmitWrap( $form );
var $submit = $wrap.find( '.button, [type="submit"]' ).not( '.acf-nav, .acf-repeater-add-row' );
var $spinner = $wrap.find( '.spinner, .acf-spinner' );
// hide all spinners (hides the preview spinner)
acf.hideSpinner( $spinner );
// lock
acf.disableSubmit( $submit );
acf.showSpinner( $spinner.last() );
return $form;
};
/**
* acf.unlockForm
*
* Unlocks a form by enabling its primary inputs and hiding all spinners.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $form The form element.
* @return jQuery
*/
acf.unlockForm = function ( $form ) {
// vars
var $wrap = findSubmitWrap( $form );
var $submit = $wrap.find( '.button, [type="submit"]' ).not( '.acf-nav, .acf-repeater-add-row' );
var $spinner = $wrap.find( '.spinner, .acf-spinner' );
// unlock
acf.enableSubmit( $submit );
acf.hideSpinner( $spinner );
return $form;
};
/**
* findSubmitWrap
*
* An internal function to find the 'primary' form submit wrapping element.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $form The form element.
* @return jQuery
*/
var findSubmitWrap = function ( $form ) {
// default post submit div
var $wrap = $form.find( '#submitdiv' );
if ( $wrap.length ) {
return $wrap;
}
// 3rd party publish box
var $wrap = $form.find( '#submitpost' );
if ( $wrap.length ) {
return $wrap;
}
// term, user
var $wrap = $form.find( 'p.submit' ).last();
if ( $wrap.length ) {
return $wrap;
}
// front end form
var $wrap = $form.find( '.acf-form-submit' );
if ( $wrap.length ) {
return $wrap;
}
// ACF 6.2 options page modal
var $wrap = $( '#acf-create-options-page-form .acf-actions' );
if ( $wrap.length ) {
return $wrap;
}
// ACF 6.0+ headerbar submit
var $wrap = $( '.acf-headerbar-actions' );
if ( $wrap.length ) {
return $wrap;
}
// default
return $form;
};
/**
* A debounced function to trigger a form submission.
*
* @date 15/07/2020
* @since ACF 5.9.0
*
* @param type Var Description.
* @return type Description.
*/
var submitFormDebounced = acf.debounce( function ( $form ) {
$form.submit();
} );
/**
* Ensure field is visible for validation errors
*
* @date 20/10/2021
* @since ACF 5.11.0
*/
var ensureFieldPostBoxIsVisible = function ( $el ) {
// Find the postbox element containing this field.
var $postbox = $el.parents( '.acf-postbox' );
if ( $postbox.length ) {
var acf_postbox = acf.getPostbox( $postbox );
if ( acf_postbox && acf_postbox.isHiddenByScreenOptions() ) {
// Rather than using .show() here, we don't want the field to appear next reload.
// So just temporarily show the field group so validation can complete.
acf_postbox.$el.removeClass( 'hide-if-js' );
acf_postbox.$el.css( 'display', '' );
}
}
};
/**
* Ensure metaboxes which contain browser validation failures are visible.
*
* @date 20/10/2021
* @since ACF 5.11.0
*/
var ensureInvalidFieldVisibility = function () {
// Load each ACF input field and check it's browser validation state.
var $inputs = $( '.acf-field input' );
$inputs.each( function () {
if ( ! this.checkValidity() ) {
// Field is invalid, so we need to make sure it's metabox is visible.
ensureFieldPostBoxIsVisible( $( this ) );
}
} );
};
/**
* acf.validation
*
* Global validation logic
*
* @date 4/4/18
* @since ACF 5.6.9
*
* @param void
* @return void
*/
acf.validation = new acf.Model( {
/** @var string The model identifier. */
id: 'validation',
/** @var bool The active state. Set to false before 'prepare' to prevent validation. */
active: true,
/** @var string The model initialize time. */
wait: 'prepare',
/** @var object The model actions. */
actions: {
ready: 'addInputEvents',
append: 'addInputEvents',
},
/** @var object The model events. */
events: {
'click input[type="submit"]': 'onClickSubmit',
'click button[type="submit"]': 'onClickSubmit',
'click #save-post': 'onClickSave',
'submit form#post': 'onSubmitPost',
'submit form': 'onSubmit',
},
/**
* initialize
*
* Called when initializing the model.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return void
*/
initialize: function () {
// check 'validation' setting
if ( ! acf.get( 'validation' ) ) {
this.active = false;
this.actions = {};
this.events = {};
}
},
/**
* enable
*
* Enables validation.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return void
*/
enable: function () {
this.active = true;
},
/**
* disable
*
* Disables validation.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param void
* @return void
*/
disable: function () {
this.active = false;
},
/**
* reset
*
* Rests the form validation to be used again
*
* @date 6/9/18
* @since ACF 5.7.5
*
* @param jQuery $form The form element.
* @return void
*/
reset: function ( $form ) {
getValidator( $form ).reset();
},
/**
* addInputEvents
*
* Adds 'invalid' event listeners to HTML inputs.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param jQuery $el The element being added / readied.
* @return void
*/
addInputEvents: function ( $el ) {
// Bug exists in Safari where custom "invalid" handling prevents draft from saving.
if ( acf.get( 'browser' ) === 'safari' ) return;
// vars
var $inputs = $( '.acf-field [name]', $el );
// check
if ( $inputs.length ) {
this.on( $inputs, 'invalid', 'onInvalid' );
}
},
/**
* onInvalid
*
* Callback for the 'invalid' event.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param object e The event object.
* @param jQuery $el The input element.
* @return void
*/
onInvalid: function ( e, $el ) {
// prevent default
// - prevents browser error message
// - also fixes chrome bug where 'hidden-by-tab' field throws focus error
e.preventDefault();
// vars
var $form = $el.closest( 'form' );
// check form exists
if ( $form.length ) {
// add error to validator
getValidator( $form ).addError( {
input: $el.attr( 'name' ),
message: acf.strEscape( e.target.validationMessage ),
} );
// trigger submit on $form
// - allows for "save", "preview" and "publish" to work
submitFormDebounced( $form );
}
},
/**
* onClickSubmit
*
* Callback when clicking submit.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param object e The event object.
* @param jQuery $el The input element.
* @return void
*/
onClickSubmit: function ( e, $el ) {
// Some browsers (safari) force their browser validation before our AJAX validation,
// so we need to make sure fields are visible earlier than showErrors()
ensureInvalidFieldVisibility();
// store the "click event" for later use in this.onSubmit()
this.set( 'originalEvent', e );
},
/**
* onClickSave
*
* Set ignore to true when saving a draft.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param object e The event object.
* @param jQuery $el The input element.
* @return void
*/
onClickSave: function ( e, $el ) {
this.set( 'ignore', true );
},
/**
* onSubmitPost
*
* Callback when the 'post' form is submit.
*
* @date 5/3/19
* @since ACF 5.7.13
*
* @param object e The event object.
* @param jQuery $el The input element.
* @return void
*/
onSubmitPost: function ( e, $el ) {
// Check if is preview.
if ( $( 'input#wp-preview' ).val() === 'dopreview' ) {
// Ignore validation.
this.set( 'ignore', true );
// Unlock form to fix conflict with core "submit.edit-post" event causing all submit buttons to be disabled.
acf.unlockForm( $el );
}
},
/**
* onSubmit
*
* Callback when the form is submit.
*
* @date 4/9/18
* @since ACF 5.7.5
*
* @param object e The event object.
* @param jQuery $el The input element.
* @return void
*/
onSubmit: function ( e, $el ) {
// Allow form to submit if...
if (
// Validation has been disabled.
! this.active ||
// Or this event is to be ignored.
this.get( 'ignore' ) ||
// Or this event has already been prevented.
e.isDefaultPrevented()
) {
// Return early and call reset function.
return this.allowSubmit();
}
// Validate form.
var valid = acf.validateForm( {
form: $el,
event: this.get( 'originalEvent' ),
} );
// If not valid, stop event to prevent form submit.