Skip to content

Instantly share code, notes, and snippets.

@taleeb35
Created December 28, 2014 04:56
Show Gist options
  • Save taleeb35/413526bd27ce1f031418 to your computer and use it in GitHub Desktop.
Save taleeb35/413526bd27ce1f031418 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('#weekly,#monthly,#quarterly,#annualy').hide();
if($("#frequency").val() === "2") {
$('#weekly').show();
} else if($("#frequency").val() === "3") {
$('#monthly').show();
} else if($("#frequency").val() === "4") {
$('#quarterly').show();
} else if($("#frequency").val() === "6") {
$('#annualy').show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment