I would like to combine those two functions but I can't figure it out. (Sorry, in learning progress...)
jQuery(document).ready(function($) {
var $mores = $('#widget-about .textwidget').hide();
var $titles = $('#widget-about a').click(function() {
var $more = $(this).next('#widget-about .textwidget').slideToggle();
$mores.not($more).slideUp();
});
});
jQuery(document).ready(function($) {
var $mores = $('#widget-contact .textwidget').hide();
var $titles = $('#widget-contact a').click(function() {
var $more = $(this).next('#widget-contact .textwidget').slideToggle();
$mores.not($more).slideUp();
});
});
Can somebody tell me how to do this?
Is it possible?
Much appreciation!
Your variable names are same. Make this unique name then it would work. Try this code.