Skip to content

Instantly share code, notes, and snippets.

@udibagas
Created April 7, 2013 14:02
Show Gist options
  • Save udibagas/5330615 to your computer and use it in GitHub Desktop.
Save udibagas/5330615 to your computer and use it in GitHub Desktop.
$('select').change(function() {
if (this.val() == 6) {
$('#un').disabled = false;
$('#uas').disabled = false;
} else {
$('#un').disabled = true;
$('#uas').disabled = true;
}
});
@AIMAGU
Copy link

AIMAGU commented Apr 7, 2013

Oke... thanks agan Udibagas

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment