To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / public / javascripts / ssamr_registration.js @ 1256:827705e14b3b

History | View | Annotate | Download (547 Bytes)

1 162:bd3f92477cbb luisf
2
3
/* SSAMR specific functions */
4
5
/* institution related functions */
6 1256:827705e14b3b luis
$(document).ready(function(){
7
                if(!$('#ssamr_user_details_institution_type_true').checked && $('#ssamr_user_details_institution_type_true').checked){
8
            $('#ssamr_user_details_other_institution').attr('disabled', 'disabled');
9
            $('#ssamr_user_details_institution_id').removeAttr('disabled');
10
            $('#ssamr_user_details_institution_type_true').checked = true;
11
            $('#ssamr_user_details_institution_type_false').checked = false;
12 192:d1713ab10813 luis
                }
13
        }
14 162:bd3f92477cbb luisf
);
15
16