Pho3nix
The Legend
Morning all 
Need to unhide sections on the site but the code below doesn't work as only the 1st unhide works but the second soesn't. Any idea what Im doing wrong?
Need to unhide sections on the site but the code below doesn't work as only the 1st unhide works but the second soesn't. Any idea what Im doing wrong?
Code:
$("#show1").click(function () {
$("#div1").toggle("slow");
});
$("#show2").click(function () {
$("#div2").toggle("slow");
});