jQuery(document).ready(function() {
	 $("form").submit(function() {		 
		if($('input[name="CSRFToken"]').length < 1){
			$(this).append(
			        $('<input/>')
		            .attr('type', 'hidden')
		            .attr('name', 'CSRFToken')
		            .val(tokenValue)
		    );
		}		
	 });
});
