Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 13 → Rev 25

/trunk/JavaScripts/mouse_toggle.js
1,20 → 1,10
/*#######################################################################
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# Author: Andrzej Kardaƛ
# License: GPLv3
# The full version of the licencse can be obtainted by visiting:
# http://www.gnu.org/licenses/gpl.html
#######################################################################*/
$(document).ready(function(){
$('div.mouse_toggle').each(function(){
$('div.mouse_toggle').each(function(){
var $content = $(this).find('div.toggle_on_mouse_content:first');
$(this).mouseenter(function(){
$content.slideDown("slow");
$content.slideDown("fast");
}).mouseleave(function(){
$content.slideUp("slow");
$content.slideUp("fast");
});
});
});
});
})