$(document).ready(function(){ $('#phonebutton').live('click', function(e){ $.ajax({ type: 'POST', global: true, cache: false, url: 'http://nagrzewnice-master.pl/SKLEP/ajax/telefon.php', data: 'telefon='+document.getElementById('phoneinput').value, dataType: 'json', success: function(dataz){ var nn=jQuery.parseJSON(dataz); $('#telefoninfo').html(nn.dane); $('#phoneinput').fadeOut(1000); $('#phonebutton').fadeOut(1000); }, error: function (xhr, ajaxOptions, thrownError){ $('#phoneinput').fadeOut(1000); $('#phonebutton').fadeOut(1000); $('#telefoninfo').html('Jakiś błąd.'); } }); return false; }); });