document.write('
Umfrage


');$(document).ready( function() { var timeout = 500; var elem; $('.answer').click( function(e) { e.preventDefault(); elem = $(this).attr('href'); $('#agumfrage').fadeOut(timeout); setTimeout(function() { $.ajax({ async: false, type: 'POST', url: elem, //data: $('#form_step').serialize(), error: function(jqXHR, textStatus, errorThrown) { alert(jqXHR.responseText);}, success: function(antwort) { $('#agumfrage').html(antwort); $('#agumfrage').fadeIn(timeout); } }); },timeout) }); });