/* #Comment form ================================================== */ var $commentForm = $('#commentform'); $commentForm.on('click', 'a.clear-form', function (e) { e.preventDefault(); $commentForm.find('input[type="text"], textarea').val(''); return false; }); $commentForm.on('click', ' a.dt-btn.dt-btn-m', function(e) { e.preventDefault(); $commentForm.find('#submit').trigger('click'); return false; });