Skip to content

Instantly share code, notes, and snippets.

@star26bsd
star26bsd / fluent form age calculate
Last active November 6, 2022 09:16 — forked from alex-authlab/fluent form age calculate
Birthday Calculation in Fluent Form
// Age calculator
// 1. First take a Date picker & a text input field
// 2. In the text input element, add the element class 'age'
// 3. Add a custom element class 'date' in the date picker, then add the following js in your fluent form custom js
jQuery( ".date" ).change(function() {
var age = getAge(jQuery(this).val())