mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
8 lines
152 B
JavaScript
Executable File
8 lines
152 B
JavaScript
Executable File
|
|
$('#is_insured_yes').on("click", function () {
|
|
$('#family').show();
|
|
});
|
|
$('#is_insured_no').on("click", function () {
|
|
$('#family').hide();
|
|
});
|