Jump to content

Ajax Request Using Jquery


zohab

Recommended Posts

I am able to make ajax request and perform operations using following code.

 

I want to do same with JQuery and I need example to do make Ajax Call and perform operations using JQuery.

 

index.php

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]"> 
<html xmlns="[url="http://www.w3.org/1999/xhtml"]http://www.w3.org/1999/xhtml[/url]"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Multiple Response in Ajax</title> 

<script> 
var xmlhttp; 

function getDetails() 
{ 
  xmlhttp=GetXmlHttpObject(); 
  if (xmlhttp==null) 
  { 
	    alert ("Your browser does not support Ajax HTTP"); 
	    return; 
  } 
  var url="getDetails.php"; 
  xmlhttp.onreadystatechange=getOutput; 
  xmlhttp.open("GET",url,true); 
  //xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); 
  //xmlhttp.setRequestHeader("Content-Type", "text/html;charset=UTF-8"); 
  xmlhttp.send(null); 
} 
function getOutput() 
{ 
  if (xmlhttp.readyState==4) 
  { 
	    alert(xmlhttp.responseText); 
	    //document.frmMultipleResponse.txtNo.value = xmlhttp.responseText; 
	    //document.frmMultipleResponse.txtName.value = xmlhttp.responseText; 
	    return; 
  } 
} 
function GetXmlHttpObject() 
{ 
  if (window.XMLHttpRequest) 
  {  
     return new XMLHttpRequest(); 
  } 
  if (window.ActiveXObject) 
  { 
    return new ActiveXObject("Microsoft.XMLHTTP"); 
  } 
  return null; 
}	
</script> 

</head> 
<body> 

<form action="" method="post" name="frmMultipleResponse"> 
<table width="100%" border="1"> 
 <tr> 
  <td> </td> 
  <td><input type="text" name="txtName" id="txtName" value="" /></td> 
 </tr> 
 <tr> 
  <td> </td> 
  <td><input type="text" name="txtNo" id="txtNo" value="" /></td> 
 </tr> 
 <tr> 
  <td> </td> 
  <td><a href="#" onclick="getDetails();">Get Details</a></td> 
 </tr> 
</table> 
</form> 

getDetails.php

 

<?php 

  echo "Name"; 

?>

 

- Thanks

Zohaib

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.