I have this code in my javascript
$('#process-title').html(projectData.process-title);
$('#process-description').html(projectData.process-description);
$('#process-wireframes').empty('');
$.each(projectData.process-wireframes, function(item) {
$('#process-images').append('<div class="project-gallery"><img src='+projectData.process-wireframes[item]+' /></div>')
});
It doesn't work for some reason and is currently breaking my site http://darrenbachan.com/. I am not sure how to fix this, I have no javascript knowledge and the threads I've read make it that even more difficult to understand. How do I define these, uhhh, are they functions?
Edit: I forgot to mention you need to click on a project to see the error.