I ran into a little obstacle in my site. In the mobile version (<480px), I have a toggle button for comments. >480px version, the button is hidden, and I want to always show the comments. It is a responsive design so it is the same page when resized. How can I do that?
$(document).ready(function(){
$('#comments-container').addClass('mobile-hide');
$('#show-comments').click(function()
{
$('#comments-container').filter(':not(:animated)').slideToggle();
});
});
.mobile-hide is just display: none;. When I toggle the content to show then hide, and resize the browser to >480px, the content remains hidden. I've tried to set .mobile-hide { display: block; } for the >480px stylesheet, but it doesn't work.