Skip to content

Instantly share code, notes, and snippets.

@taleeb35
Last active August 29, 2015 14:06
Show Gist options
  • Save taleeb35/314f590079df6ebe2b9e to your computer and use it in GitHub Desktop.
Save taleeb35/314f590079df6ebe2b9e to your computer and use it in GitHub Desktop.
$('#day,#month').hide();
$('#frequency').change(function(){
var selection = $("option:selected", this).text();
switch(selection)
{
case 'Weekly':
$('#day').show();
break;
case 'Monthly':
$('#month').show();
break;
default:
$('#day,#month').hide();
break;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment