mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-05 11:32:12 +09:00
9 lines
211 B
JavaScript
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");
|
|
}
|
|
});
|