function dodajWpis() { var phrase = document.getElementById("tresc").value; $.ajax({ type: "POST", dataType: "text", data: { phrase:phrase, }, url: "inputData.php", success: function(odp) { // document.getElementById("display").innerHTML=odp; }, complete: function() { // $('#sssn').hide(); }, error: function() { alert( "błąd"); } }); } function wyswietlWpis() { $.ajax({ type: "POST", dataType: "text", url: "getData.php", success: function(odp) { document.getElementById("display").innerHTML=odp; }, complete: function() { // $('#sssn').hide(); }, error: function() { alert( "błąd"); } }); setTimeout(wyswietlWpis,1000); }