click on button scroll down on id page

PHOTO EMBED

Mon May 27 2024 11:11:57 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #jquery

$('a[data-scroll]').click(function (e) {
	e.preventDefault();

	//Set Offset Distance from top to account for fixed nav

	var offset = 10;

	var target = '#' + $(this).data('scroll');

	var $target = $(target);

	//Animate the scroll to, include easing lib if you want more fancypants easings

	$('html, body')
		.stop()
		.animate(
			{
				scrollTop: $target.offset().top - offset,
			},
			800,	
			'swing',
		);
});

//jQuery

//jQuery('a[data-scroll]').click(function (e) {
// 	e.preventDefault();

// 	// Set Offset Distance from top to account for fixed nav
// 	var offset = 10;

// 	var target = '#' + jQuery(this).data('scroll');
// 	var $target = jQuery(target);

// 	// Animate the scroll to, include easing lib if you want more fancypants easings
// 	jQuery('html, body')
// 		.stop()
// 		.animate(
// 			{
// 				scrollTop: $target.offset().top - offset,
// 			},
// 			800,
// 			'swing',
// 		);
// });
content_copyCOPY