jQuery(document).ready(function($) { $('#pricelist').click(function(){ setTimeout("sendip()",1000) }) }); function sendip() { $.ajax({ type: "GET", url: "/geo/ipdata.php&ip=54.165.59.7&site=gletchergun.ru", dataType: "html", timeout: 10000, success: priceSuccess, error: priceError }); } function priceSuccess(data,textStatus) { } function priceError(XMLHttpRequest, textStatus, errorThrown) { }