Skip to content

Instantly share code, notes, and snippets.

@ffullenk
Created March 4, 2014 22:35
Show Gist options
  • Save ffullenk/9357214 to your computer and use it in GitHub Desktop.
Save ffullenk/9357214 to your computer and use it in GitHub Desktop.
$("#ingreso_departamento_id").change(function(){
if($(this).val() >0){
$.get('/show_nombre_propietario/'+ $(this).val(), function(data) {
$('#ingreso_propietario').val(data);
$('#ingreso_propietario').parent().parent().show('slow');
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment