I want to scroll to the particular div using jquery
I have written the code like:
$(\"#button\").on(\'click\',function(){ var p = $(\"#dynamictabst
You can set offset as per requirement
jQuery(document).ready(function(){ function secOffset(){ jQuery('html, body').animate({ scrollTop: jQuery(window.location.hash).offset().top - 60 }, 0); } });