This is a discussion group for mooSocial's Scroll to Top plugin. Have ideas, suggestions, questions regarding this plugin? Please post them here. Demo Link: http://addons.moosocial.com/ Purchase link: https://moosocial.com/addons/
I am missing the option to hide scroll to top in mobile view. But I solved it, here is a sample how I did it after I edited the plugin and add new value _min_with
jQuery(window).scroll(function()
{
if($(window).width() > $data["scrolltotop_min_width"])
{
if(jQuery(this).scrollTop() > '.$data["scrolltotop_show_after"].&apos
jQuery("#ScrollToTop".fadeIn("slow"
else
jQuery("#ScrollToTop".fadeOut("slow"
}else{
jQuery... moreI am missing the option to hide scroll to top in mobile view. But I solved it, here is a sample how I did it after I edited the plugin and add new value _min_with