We use javascript code to scroll to the div with the given identifier. I tried to use
jQuery.animate({scrollTop: number})
window.scrollTo(0, number)
setTimeout(function() {window.scrollTo(0, number);}, 1000)
I also tried adding #element_id
to the url to navigate to the element_id element.
None of these options work. Is there any way to make it work?
iOS : 9.2.1
Chrome : 48.0.2564.87
http://jsfiddle.net/fXx6c/114/
source
share