I'm using the onClick
function.
How can I use onClick
to scroll to an element or id of a div in a scrollable div using Jquery?
An example of how to do this would be very helpful.
I'm using the onClick
function.
How can I use onClick
to scroll to an element or id of a div in a scrollable div using Jquery?
An example of how to do this would be very helpful.
You can used this:
$("element").click(function() {
$('div').animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 1000);
});
But if you want some advice specifically have to give an example