Skip to content

Instantly share code, notes, and snippets.

@mkeen
Created June 28, 2010 16:11
Show Gist options
  • Save mkeen/456032 to your computer and use it in GitHub Desktop.
Save mkeen/456032 to your computer and use it in GitHub Desktop.
function visiToggleFilter(link, class){
if(jQuery(link).html() == "more..."){
jQuery(class).show();
jQuery(link).html("hide...");
}
else{
jQuery(class).hide();
jQuery(link).html("more...");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment