{#
* Plugin Name : ProductPlus
*
* Copyright (C) BraTech Co., Ltd. All Rights Reserved.
* http://www.bratech.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
#}
<script>
$(function() {
$('#productplus-error-scroll-link').on('click', function(e) {
e.preventDefault();
var $firstInvalid = $('.is-invalid').first();
if ($firstInvalid.length) {
$('html, body').animate({
scrollTop: $firstInvalid.offset().top - 100
}, 300);
}
});
});
</script>