Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Last active March 2, 2021 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vfontjr/e6175678014012398c3b9874491cb9a6 to your computer and use it in GitHub Desktop.
Save vfontjr/e6175678014012398c3b9874491cb9a6 to your computer and use it in GitHub Desktop.
<script>
jQuery(document).ready(function($) {
"use strict";
/* change the calendar start day when date field receives foucus */
$('#field_zkbet').on('focus', function() {
/* get the radio button value */
var selected_day = $('input[name="item_meta[286]"]:checked').val();
/* apply the radio button's value to the firstDay option */
$(this).datepicker('option', 'firstDay', selected_day);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment