Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JimboFromLimbo/589da592d9f4452f8e7e2310daa729ee to your computer and use it in GitHub Desktop.
Save JimboFromLimbo/589da592d9f4452f8e7e2310daa729ee to your computer and use it in GitHub Desktop.
slideDown=function(id){
$(id).slideDown('slow')
}
showItem=function (id) {
$(id).show()
}
hideItem=function (id) {
$(id).hide()
}
slideDown=function(id) {
$(id).slideDown('slow')
}
slideUp=function(id){
$(id).slideUp('slow')
}
uncheck=function(id){
$(id).attr('checked', false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment