Skip to content

Instantly share code, notes, and snippets.

View halfpintutopia's full-sized avatar

Sirinya halfpintutopia

  • Sirinya Richardson
  • 09:45 (UTC +02:00)
View GitHub Profile
@halfpintutopia
halfpintutopia / input-month-polyfill.js
Created January 25, 2023 08:55 — forked from JordanReiter/input-month-polyfill.js
Polyfill for input type="month" with no dependencies.
(function() {
var monthInputs = document.querySelectorAll('input[type="month"]'),
checkDateInput = document.createElement('input'),
dateSupported = false,
months = [],
lang = document.documentElement.lang || navigator.language,
DEFAULT_SPAN = 5;
if (monthInputs[0].type === 'month') {
// browser supports month input; no need for polyfill