Commit 7f1e232b by o.kimura

JS記述変更

parent 9263c86b
Showing with 5 additions and 4 deletions
...@@ -65,10 +65,10 @@ jQuery(function() { ...@@ -65,10 +65,10 @@ jQuery(function() {
}); });
}); });
/* gNav_dropdown */ /* gNav_dropdown */
$(function(){ jQuery(function() {
$("li.gNav_dropdown").hover(function(){ jQuery("li.gNav_dropdown").hover(function(){
$("ul.gNav_dropdown_item:not(:animated)", this).slideDown(); jQuery("ul.gNav_dropdown_item:not(:animated)", this).slideDown();
}, function(){ }, function(){
$("ul.gNav_dropdown_item",this).slideUp(); jQuery("ul.gNav_dropdown_item",this).slideUp();
}); });
}); });
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment