View Single Post
ישן 07-12-08, 20:42   # 6
intercooler3819
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Jul 2008
הודעות: 1,056

intercooler3819 לא מחובר  

HTML קוד:
$.get("test.pl",
  { getvar: "getvarvalue", secondgetvar: "ohmamthatsthesecondone" }, // here you are initializing the call and compiling it with the get parameters
  function(data){// in this part you are getting back the content of the http reseponse from the server and act in response
    alert("whats up, i have got this information: " + data); // for instance, popup, you can also it down:
    // $('#myhotid').html(data);
  }
)
__________________
  Reply With Quote