I\'m working on a single page websites with each page organized into section tags. Every section is placed on top of each other. I need a way with jquery, where based on cur
Add an id to the links
About
Add an id to the section
Add some jquery
$("#about").click(function(){ $("#about-content").show() $("#services-content").hide() $("#contact-content").hide() })
WORKING EXAMPLE HERE