In my footer, I have a list of links. When I click on the last item labeled "See more links," jQuery's slideToggle() function replaces the list with new members.
However, this action causes the bottom of my footer to shift slightly up and then back down.
A user named George helped me resolve this issue by using jQuery to set the height of #col on page load. Here is the code:
$('#col').height(function(_,v){ return v; });
Despite this solution, I'm encountering another issue that I can't quite figure out.
I have five versions of my design based on media queries. The image above shows my mobile version where the "See more links" link is almost completely hidden.
Moreover, Internet Explorer presents similar problems across all versions of my project...
Do you have any insight into why this might be occurring?
For a complete example, please refer to: http://jsfiddle.net/jcak/4ma6es6h/8/