|
12345678910111213141516171819 |
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(document).on("change", "#resource_type", function() {
- var resource_type = $(this).val();
- $(".resource_type_input").hide("fast", function() {
- $("#resource_type_" + resource_type).show("slow");
- });
- });
|