I want to create tabs that function like toggles, but instead only one toggle can be active at one time. The content of the tab also needs to be above the the tabs themselves. T
You can try something like this DEMO
HTML Code
jQuery
$("#one").click(function() { $("#thumb").html(""); }); $("#two").click(function() { $("#thumb").html(""); }); $("#three").click(function() { $("#thumb").html(""); });