$(document).ready(function() { $("#comments_ajax").load("sub-comments.php"); return; $('#form_newcomment').ajaxForm(function() { $("#comments_ajax").load("sub-comments.php"); $('#form_newcomment').resetForm(); $('#comment').slideToggle(); }); }); function register_ajax_form() { $('#form_newcomment').ajaxForm(function() { $("#comments_ajax").load("sub-comments.php"); $('#form_newcomment').resetForm(); $('#comment').slideToggle(); }); } function load_comments(url_link) { $('#comments_ajax').hide("slow"); $("#comments_ajax").load(url_link,"",comments_loaded); } function comments_loaded() { $('#comments_ajax').show("slow"); } function show_hide_comment_form() { $("#comment").slideToggle(); }