/*

jQuery - External Links
Created by Andrea Cima Serniotti - http://www.madeincima.eu

*/


$(document).ready(function () {

// ---- FAQs ---------------------------------------------------------------------------------------------------------------

$('.faqs dd').hide(); // Hide all DDs inside .faqs
$('.faqs dt').hover(function(){$(this).addClass('hover')},function(){$(this).removeClass('hover')}).click(function(){ // Add class "hover" on dt when hover
$(this).next().slideToggle('normal'); // Toggle dd when the respective dt is clicked
});

});

相关文章:

  • 2022-12-23
  • 2021-06-08
  • 2021-09-15
  • 2022-01-29
  • 2022-03-15
  • 2021-05-21
  • 2022-03-15
  • 2022-01-19
猜你喜欢
  • 2021-12-14
  • 2021-11-18
  • 2022-12-23
  • 2022-12-23
  • 2021-04-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案