vote up 0 vote down star

Dear all I have developed code with ajax and JQuery , I have Got Response from my.php, I have Tried to extract the Values of response ,Here the code

My.php

 ?php

    echo '<div id="title">My Title </div>';
    echo '<div id="message"> My message </div>';
    ?>

I Try to extract Title and Message SO My Code is Below

<script type="text/javascript" src="js/jquery-1.2.6.js"></script>

<script type="text/javascript">

  $(document).ready(function() {

        alert("OK");

        $.ajax({
          type:"POST",
          url: "my.php",
          cache:false ,
          success: function(data){
                  $("#response").html(data);

                  var $response=$(data);

                  var oneval = $response.find('#title').text();
                  var subval = $response.find('#message').text();
                  alert(oneval);

                }
             });
     });

</script>
</head>

<body>
<div id="response">
</div>

</body>
</html>

...

Problem is when I Tried To alert ,It Not working What Wrong with This Logic,Should i use anyother function To Extract Title and Message

flag

78% accept rate

3 Answers

vote up 1 vote down check

ok go here http://jsbin.com/udige/ and you can see it working.

The key is using .filter not .find as the two divs are root elements in the response. My mistake. Basically do the following:

 success: function(data){
             $("#response").html(data);
                  var $response=$(data);
                  var oneval = $response.filter('#title').text();
                  var subval = $response.filter('#message').text();
                  alert(oneval);
                }
link|flag
Thanks for providing help! – venkatachalam Dec 31 '08 at 10:53
vote up 0 vote down

If the response is coming back as you wrote it then the code which i gave you will work. You really need to learn how to use a debugger (firebug) and put breakpoints into your code so you can use the console to test selectors and look at the values of variables etc. Also you should really have responded to the original question & answer that i gave rather than opening a whole new question especially since you have not even cross referenced your original.

link|flag
I done Your example with as you pointed out, When i try to alert the value, It simply throghs null message,Firebug says sucess.Still i not able to alert it how to do it ? – venkatachalam Dec 31 '08 at 9:37
Can you put breakpoints inside the success function and establish exactly what data is in the response. – redsquare Dec 31 '08 at 10:09
if not can you put this live and link the url so I can help – redsquare Dec 31 '08 at 10:09
pastebin.me/495b4572c4de1 is My Link – venkatachalam Dec 31 '08 at 10:12
This Link has Both my.php and Mycode pastebin.me/495b46c277910 – venkatachalam Dec 31 '08 at 10:18
vote up -1 vote down

Try using this instead:

var oneval = $("#response #title").text();
var subval = $("#response #message").text();
link|flag
Not Working Michael Bray ? – venkatachalam Dec 31 '08 at 8:35
Is the div actually filling with the content you are sending back? That is, can you see 'My Title' and 'My Message'? – Michael Bray Dec 31 '08 at 8:55
Michael, #response wont work as seen as there is not element with an id of response! – redsquare Dec 31 '08 at 8:56
#response is right in his HTML! – Michael Bray Dec 31 '08 at 8:57
not in the data returned hence it wont work....bah.....he is messing up his questions see stackoverflow.com/questions/400197/… also. Anyway there is no benefit or need to run two id selectors side by side.... – redsquare Dec 31 '08 at 9:00
show 12 more comments

Your Answer

Get an OpenID
or

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