Changeset 3143542
- Timestamp:
- 08/29/2024 10:44:17 AM (19 months ago)
- Location:
- simple-accessible-forms
- Files:
-
- 11 added
- 3 edited
-
tags/1.0.10 (added)
-
tags/1.0.10/LICENSE (added)
-
tags/1.0.10/publicstyles.css (added)
-
tags/1.0.10/readme.txt (added)
-
tags/1.0.10/scripts (added)
-
tags/1.0.10/scripts/jquery_form_validation.js (added)
-
tags/1.0.10/scripts/public-scripts.js (added)
-
tags/1.0.10/scripts/scripts.js (added)
-
tags/1.0.10/settings.php (added)
-
tags/1.0.10/simple-accessible-forms.php (added)
-
tags/1.0.10/style.css (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/scripts/jquery_form_validation.js (modified) (4 diffs)
-
trunk/simple-accessible-forms.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-accessible-forms/trunk/readme.txt
r3142841 r3143542 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 1.0. 910 Stable tag: 1.0.10 11 11 12 12 == Description == … … 55 55 56 56 == Changelog == 57 = 1.0.10 = 58 1. corrected validation issue on multiselect dropdowns 59 57 60 = 1.0.9 = 58 61 1. corrected form field names that include a period failing to display error notice -
simple-accessible-forms/trunk/scripts/jquery_form_validation.js
r3142841 r3143542 512 512 } 513 513 514 515 514 if(jQuery('.'+inputname.replace(".","_")+'Error').length == 0) { 516 515 jquery_form_validation_place_error_notice(filefield, inputname); … … 579 578 580 579 // process text fields 581 if(tagname === 'INPUT' || tagname === 'SELECT' || tagname === 'TEXTAREA' || tagname === 'DUET-DATE-PICKER'){ 580 if(tagname === 'INPUT' || tagname === 'SELECT' || tagname === 'TEXTAREA' || tagname === 'DUET-DATE-PICKER'){ 581 582 582 583 583 if(format === 'alpha-puncuation-space') { … … 654 654 fieldvalue = jQuery(formfield).val(); 655 655 } 656 657 656 658 657 659 // set to empty if undefined … … 665 667 else{ // process array values 666 668 fieldvalue = ''; 669 670 // get value of multiselect 671 if(tagname === 'SELECT'){ 672 fieldvalue = jQuery(formfield).val(); 673 } 674 667 675 jQuery(formid+' input[name="'+inputarray+'"]').each(function(index){ 668 676 -
simple-accessible-forms/trunk/simple-accessible-forms.php
r3142841 r3143542 4 4 * Plugin URI: https://wordpress.org/plugins/simple-accessible-forms/ 5 5 * Description: Easily make any html form accessible using the Simple Accessible Forms Plugin. The Simple Accessible Forms Plugin allows you to define form field validation information which will be used to add the necessary features to make the form accessible. It will add form field labels, required field markings, add form field validation and display screen reader friendly error message when a user navigates away from a field, moves focus to the first field in error in the event of a form submission failure. 6 * Version: 1.0. 96 * Version: 1.0.10 7 7 * Author: AlumniOnline Web Services LLC 8 8 * Author URI: https://www.alumnionlineservices.com/php-scripts/simple-accessible-forms/
Note: See TracChangeset
for help on using the changeset viewer.