JQuery accordion scroll to top
Hi,
I am using this recommended approach to scroll to the top of the accordion when it is expanded. But our developers mentioned that they are not using JQuery UI. Only JQuery.
How can this be done for JQuery ?
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css">
$(function() {
$("#accordion").accordion({
});
$('#accordion').bind('accordionchange', function (event, ui) {
$(window).scrollTop(ui.newHeader.offset().top);
});
});
Thanks,
Mohan