Title: Date comparison
Last modified: August 24, 2016

---

# Date comparison

 *  Resolved [sausb](https://wordpress.org/support/users/sausb/)
 * (@sausb)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/date-comparison/)
 * Hey,
 * My form contains a “From” and a “To” date fields.
    I’d like to compare those 
   2 fields before submitting the form and make sure that To is later than From.
   Is it possible to do so ?
 * Thx in advance for any help.
    SB
 * [https://wordpress.org/plugins/form-maker/](https://wordpress.org/plugins/form-maker/)

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [webdorado](https://wordpress.org/support/users/webdorado/)
 * (@webdorado)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/date-comparison/#post-6115912)
 * Dear user,
 * Please use the following code in Form Options>Javascript> before_submit part 
   filling in the IDs and alert message
 *     ```
       var date_from  = jQuery("#id_of_from").val();
       var date_to    = jQuery("#id_of_to").val();
       if(new Date(date_to) <= new Date(date_from)) {
        alert('something');
        return false;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Date comparison’ is closed to new replies.

 * ![](https://ps.w.org/form-maker/assets/icon-256x256.png?rev=2068681)
 * [Form Maker by 10Web - Mobile-Friendly Drag & Drop Contact Form Builder](https://wordpress.org/plugins/form-maker/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/form-maker/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/form-maker/)
 * [Active Topics](https://wordpress.org/support/plugin/form-maker/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/form-maker/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/form-maker/reviews/)

## Tags

 * [dates](https://wordpress.org/support/topic-tag/dates/)
 * [from](https://wordpress.org/support/topic-tag/from/)
 * [to](https://wordpress.org/support/topic-tag/to/)

 * 1 reply
 * 2 participants
 * Last reply from: [webdorado](https://wordpress.org/support/users/webdorado/)
 * Last activity: [10 years, 12 months ago](https://wordpress.org/support/topic/date-comparison/#post-6115912)
 * Status: resolved