blob: 2212b9ad029dee09d90587507a1e85d3d18994be (
plain)
1
2
3
4
5
6
7
8
9
|
$(document).ready(function(){
$('#form_comment').hide();
$('#button_addcomment').click(function(){
$(this).fadeOut('fast');
$('#form_comment').slideDown(function(){
$('#comment_content').focus();
});
});
});
|