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 @ 912:5e80956cc792

History | View | Annotate | Download (501 Bytes)

1

    
2

    
3
/* SSAMR specific functions */
4

    
5
/* institution related functions */
6
Event.observe(window, 'load',
7
  function() {                
8
                if(!$('ssamr_user_details_institution_type_true').checked && $('ssamr_user_details_institution_type_true').checked){
9
                    $('ssamr_user_details_other_institution').disable();
10
                    $('ssamr_user_details_institution_id').enable();
11
                    $('ssamr_user_details_institution_type_true').checked = true;
12
                    $('ssamr_user_details_institution_type_false').checked = false;
13
                }
14
        }
15
);
16

    
17

    
18