Skip to content

Instantly share code, notes, and snippets.

@davidphasson
Created March 28, 2009 02:59
Show Gist options
  • Save davidphasson/87011 to your computer and use it in GitHub Desktop.
Save davidphasson/87011 to your computer and use it in GitHub Desktop.
// Operates on tabs with class "form_tab" - hides all but "tabname"
function switch_tab(tabname)
{
tabs = $$('.form_tab');
for ( var i in tabs )
{
tab = tabs[i];
(tabname == tab.id) ? tab.show() : tab.hide();
}
scroll(0,0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment