I have a problem with my toggle. I have found similar posts but none that I truly understood.
I want the button to change text to "Project Info -" when clicked and when clicked again revert back to "Project Info +"
Here's the problem (the project info button) -> http://marcuspedersen.com/oyafestivalen.html
The code:
jquery
$('#toggle').click(function() {
$('#workinfo').slideToggle (300, 'linear');
});
The button
<input type="button" id="toggle" value="Project Info +"/>