Skip to content

Instantly share code, notes, and snippets.

@druman
Created February 3, 2017 09:35
Show Gist options
  • Save druman/37b2c18e82dec4deec7a965c2d2895da to your computer and use it in GitHub Desktop.
Save druman/37b2c18e82dec4deec7a965c2d2895da to your computer and use it in GitHub Desktop.
HTML5 input required, scroll to input with affix
$(document).ready(function() {
var delay = 0;
var offset = 100;
document.addEventListener('invalid', function(e){
$(e.target).addClass("invalid");
$('html, body').animate({scrollTop: $($(".invalid")[0]).offset().top - offset }, delay);
}, true);
document.addEventListener('change', function(e){
$(e.target).removeClass("invalid")
}, true);
});;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment