Plugin Directory

Changeset 3143542


Ignore:
Timestamp:
08/29/2024 10:44:17 AM (19 months ago)
Author:
seshelby
Message:

Releasing version 1.0.10

Location:
simple-accessible-forms
Files:
11 added
3 edited

Legend:

Unmodified
Added
Removed
  • simple-accessible-forms/trunk/readme.txt

    r3142841 r3143542  
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 1.0.9
     10Stable tag: 1.0.10
    1111
    1212== Description ==
     
    5555
    5656== Changelog ==
     57= 1.0.10 =
     581. corrected validation issue on multiselect dropdowns
     59
    5760= 1.0.9 =
    58611. corrected form field names that include a period failing to display error notice
  • simple-accessible-forms/trunk/scripts/jquery_form_validation.js

    r3142841 r3143542  
    512512}
    513513
    514 
    515514  if(jQuery('.'+inputname.replace(".","_")+'Error').length == 0) {
    516515    jquery_form_validation_place_error_notice(filefield, inputname);
     
    579578 
    580579    // 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     
    582582 
    583583    if(format === 'alpha-puncuation-space') {
     
    654654      fieldvalue = jQuery(formfield).val();
    655655    }
     656
     657   
    656658 
    657659      // set to empty if undefined
     
    665667    else{ // process array values
    666668      fieldvalue = '';
     669     
     670    // get value of multiselect
     671    if(tagname === 'SELECT'){
     672      fieldvalue = jQuery(formfield).val();
     673      }
     674
    667675      jQuery(formid+' input[name="'+inputarray+'"]').each(function(index){
    668676   
  • simple-accessible-forms/trunk/simple-accessible-forms.php

    r3142841 r3143542  
    44 * Plugin URI: https://wordpress.org/plugins/simple-accessible-forms/
    55 * 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.9
     6 * Version: 1.0.10
    77 * Author: AlumniOnline Web Services LLC
    88 * Author URI: https://www.alumnionlineservices.com/php-scripts/simple-accessible-forms/
Note: See TracChangeset for help on using the changeset viewer.