My code for collapsible jquery div works on codepen and JSFiddle, but when I copy everything to my page (content adapted), the div does not expand. What am I missing, or where d
You need to wrap your code inside ready handler:
$(document).ready(function(){ //your code here });
Or,
$(function(){ //your code here });