Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I specify an element where the content is to be retrieved from within the pageurl in the code below?

  $(function () {
     $("a[rel='sort']").click(function (e) {
         //e.preventDefault(); 
         /*  
    if uncomment the above line, html5 nonsupported browers won't change the url but will display the ajax content;
    if commented, html5 nonsupported browers will reload the page to the specified link. 
    */

         //get the link location that was clicked
         pageurl = $(this).attr('href');

         //to get the ajax content and display in div with id 'content'
         $.ajax({
             url: pageurl + '?rel=sort',
             success: function (data) {
                 $('#content1').html(data);
             }
         });

         //to change the browser URL to 'pageurl'
         if (pageurl != window.location) {
             window.history.pushState({
                 path: pageurl
             }, '', pageurl);
         }
         return false;
     });
 });
share|improve this question
what are you retrieving here, success: function (data) . Is it a a json array of data? – Swarnajith Dec 17 '12 at 9:39

3 Answers

up vote 1 down vote accepted

You'll have to get the response in a variable and then find your desired content

Try this

$.ajax({url:pageurl+'?rel=sort',success: function(data){
    var content = $(data).find("#IDofYouContent");
    $('#content1').html(content);
}});
share|improve this answer
thx this works well – john Dec 17 '12 at 9:46

use jQuery.load()] event

Details: http://api.jquery.com/load/

$(function(){
    $("a[rel='sort']").click(function(e){
     pageurl = $(this).attr('href')+"?rel=sort #elementToBeLoadedIn";
    $('#content1').load(pageurl);
    .
    .
}
share|improve this answer
can i still use $("a[rel='sort']").click(function(e){ to specify the url – john Dec 17 '12 at 9:31
@phukkie yes sure.. see the updated answer – Champ Dec 17 '12 at 9:32
thx both your answers work – john Dec 17 '12 at 9:47
you can always show your thanks by +1 :) – Champ Dec 17 '12 at 10:00
i just did :) my rep wasn't high enough earlier. – john Dec 17 '12 at 20:03

You would use the load() function, like so:

$('#content1').load(pageurl + '?rel=sort #elementToBeLoadedIn');

Check out the docs for more info: http://api.jquery.com/load/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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