Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save staycreativedesign/72a4185cc0ed9239de298fc788dbded9 to your computer and use it in GitHub Desktop.
Save staycreativedesign/72a4185cc0ed9239de298fc788dbded9 to your computer and use it in GitHub Desktop.
Trying to get value of post_of_type on load
$("#post_of_type").on('change', foo);
function foo(){
switch($("#post_of_type").val()) {
case "documents":
console.log("foo")
break;
default:
console.log("bar")
}
}
foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment