To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / public / javascripts / ssamr_registration.js @ 1255:90d92ad3fc59
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 |
|