Created
December 28, 2014 04:56
-
-
Save taleeb35/413526bd27ce1f031418 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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