I'm using jQuery to hijack a link pointing to a php file. This php file is mostly html, but calls two php functions that each use a for loop to output html. The problem I'm running into is that the ajax call is incorrectly nesting the html generated by the php for loop.

Including the php file directly onto the page works fine, but when trying to grab it via ajax the html content of each sequential pass through the loop is inserted inside the previously generated html. For example:

<div>Content1</div>
<div>Content2</div>
<div>Content3</div>

becomes:

<div>Content1<div>Content2<div>Content3</div></div></div>

This is the relevant code for the php file:

<div class="publishedPosts">
  <h3>Published</h3>
  <?php displayPublishedBlogPosts(); ?>
</div>
<div class="verticalDivider"></div>
<div class="draftPosts">
  <h3>Saved Drafts</h3>
  <?php displayBlogPostDrafts(); ?>
</div>

And this is the jQuery code:

function adminPanelTabs() {
  $('#adminPanelTabs ul li a').click(function(e) {
    $('#adminPanelTabs ul li a.current').removeClass('current');
    $(this).addClass('current');
    $('#adminPanelContent').load($(this).attr('href'));
    e.preventDefault();
  });
}

Would appreciate any input or suggestions on how to fix this.

alt text

link|improve this question
What does an actual response look like, not PHP code but fully rendered? I would wager that your issue is in there. – Nick Craver Dec 3 '10 at 11:59
Appreciate the response, Nick. I've posted some screenshots here:Normal - nimblehost.com/test/normal.png – Jonathan Head Dec 3 '10 at 12:05
Incorrectly Nested - nimblehost.com/test/incorrectlyNested.png – Jonathan Head Dec 3 '10 at 12:05
Btw, the "normal" screenshot is from just using a regular php include. – Jonathan Head Dec 3 '10 at 12:06
feedback

1 Answer

up vote 1 down vote accepted

Go figure - spend hours researching how to fix this, post here as a last resort, then I figure out what the problem is 30 minutes later.

For the record, the problem was in the php functions being called. They included sections where the closing div tag was enclosed in an if statement.

The if statement simply checked to see if the user was logged in, and even though this was true apparently making an ajax call in this way fails such an if statement, hence the closing div tag was never added.

I'd like to thank Nick for responding, as that helped trigger an idea about where the problem might be.

link|improve this answer
remember to accept your answer – ajreal Dec 3 '10 at 12:30
+1 for putting in a detailed answer rather than just abandoning the question once you'd solved it. :) – Chris Dec 3 '10 at 12:43
@ajreal - thanks for the prompt, still a newbie here. ;-) – Jonathan Head Dec 11 '10 at 9:44
feedback

Your Answer

 
or
required, but never shown

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