Here is my code: https://jsfiddle.net/ucffyp3v/43/
As stated, I would like to only show 50px in height of this div and show the rest once show more is clicked.
The js does not seem to be working to display the rest of the div.
$("document").ready(function(){
$(".show-more").click(function(){
if($(".mydiv").css("height")!="50px"){
$(".mydiv").slideDown();
}
else{
$(".mydiv").slideUp();
}
}
}