$(document).ready(function(){ $("input#reactie_knop").click(function() { var dataString = 'groepid=' + $('#groepid').val(); dataString += '&naam=' + $('#naam').val(); dataString += '&email=' + $('#email').val(); dataString += '&title=' + $('#title').val(); dataString += '&text=' + $('#text').val(); dataString += '&node_id=' + $('#node_id').val(); dataString += '&_azx1324=' + $('#_azx1324').val(); $("#ajax_activity").show(); $.ajax({ type: "POST", url: "/reactie_ajax.php", data: dataString, success: processResponse }); return false; }); function processResponse(responseText, statusText) { $('#cbContentholder').html(responseText); } });