animate scroll not reason for not working in FF
is $('body , html') and $('body' , 'html') two different things ?? because the below code does't work:
- $('body' , 'html')
- .animate({ scrollTop: ($(section_id).offset().top - $('.main-nav').height()) }, {
- 'duration': 500
- });
but the works:
- $('body , html')
- .animate({ scrollTop: ($(section_id).offset().top - $('.main-nav').height()) }, {
- 'duration': 500
- });