I want to scroll to the particular div using jquery
I have written the code like:
$(\"#button\").on(\'click\',function(){ var p = $(\"#dynamictabst
Try this simple script. Change #targetDiv with your particular div ID or Class.
#targetDiv
$('html,body').animate({ scrollTop: $('#targetDiv').offset().top }, 1000);
The source code and live demo can be found from here - Smooth scroll to div using jQuery