Skip to content

Instantly share code, notes, and snippets.

@udibagas
Created April 7, 2013 14:02
Show Gist options
  • Select an option

  • Save udibagas/5330615 to your computer and use it in GitHub Desktop.

Select an option

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

AIMAGU commented Apr 7, 2013

Copy link
Copy Markdown

Oke... thanks agan Udibagas

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