I have contact form with reCaptcha and using jQuery mCustomScrollbar plugin.
Problem : When I click on / focus on reCaptcha field, the page scrolls automatically to top of the div.
See Demo on Jsffidle, Code on Jsfiddle
note : if mscrollbar isn't working on jsfiddle, that is issue calling js and css from malihu site.
$(".scroller-back").mCustomScrollbar({
advanced:{
updateOnContentResize: true
}
});
Using autoScrollOnFocus: false
Auto-scrolling on elements that have focus (e.g. scrollbar automatically scrolls-to form textfields when the TAB key is pressed), values: true, false.
$(".scroller-back").mCustomScrollbar({
advanced:{
autoScrollOnFocus: false,
updateOnContentResize: true
}
});
It's working for all fields focus not auto scroll, how can I fix this issue without using autoScrollOnFocus: false
?