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