rhymix/modules/install/tpl/js/install.js
2016-01-05 20:46:44 +09:00

9 lines
211 B
JavaScript

jQuery(function($){
$('.focus').focus();
if($("#db_type").size()) {
$("#db_type").click(function() {
$("p.db_type").hide();
$("p.db_type_" + $(this).val()).show();
}).triggerHandler("click");
}
});