Hi,

Are aware that there are tabs plugins?

To answer your question:
$(function(){
  $("#tabs li a").click(function(){
    $("#tabs li").removeClass("select");
    $(this).parent().addClass("select");
  });
});

~Sean

Reply via email to