vote up 2 vote down star
2

I have done jQuery and Ajax , but I am not able to get the response into a Div element. This is the code:

Index.html

       $.ajax({
	  type:"POST",
	  url: "ajax.php",
	  data:"id="+id ,
	  success: function(html){
	         	$("#response").html(data);
		}
	     });

It is receiving the response to my <div id="response"></div>.

The ajax.php returns following code to the index.html

<div id ="one">OneVal </div>
<div id ="sub"> SubVal </div>

Will I able to extract the OneVal and Subval into a variable, and how can I extract the OneVal and SubVal, instead of above response?

flag

78% accept rate
var plz=$response.find('#title').text(); alert(plz); It Throws Null Values ,Should I need to Do any other thing to Get Values – venkatachalam Dec 31 '08 at 5:36

2 Answers

vote up 4 vote down check

quite easy. you can use .find on a jquery object that was created from the response.

  success: function(data){
               //create jquery object from the response html
               var $response=$(data);
               //query the jq object for the values
               var oneval = $response.find('#one').text();
               var subval = $response.find('#sub').text();
          }
link|flag
vote up 0 vote down

change the .find to .filter

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.