Skip to content

Instantly share code, notes, and snippets.

@ed-codes
Created September 2, 2019 11:35
Show Gist options
  • Save ed-codes/7cef9dc387d9682eab61655bb8c70992 to your computer and use it in GitHub Desktop.
Save ed-codes/7cef9dc387d9682eab61655bb8c70992 to your computer and use it in GitHub Desktop.
$('[min]').change(function() {
var min = parseInt(jQuery(this).attr('min'));
var value = parseInt(jQuery(this).val());
if (value < min) { jQuery(this).val(min); }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment