Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making this message viewer for my forum site. I have this code to start, i was orginally using .load() and now trying .get() having trouble figuring out how to do this work around.

Code I am working on

$('#message_holder').load('/privmsg?folder=inbox .tdtopics:lt(5)');
  $('#view_mess').click(function() {
     var msg = $('.tdtopics a').attr('href');
 $.get( msg, function() {
    $.each('div.posthead h2, .user-basic-info , .entry-content');
}, 'html');
     $('#mess_wrapper').show();
  });
});

So the .each( -elements- ); I need to load these specifically from the url which is in the

.get(msg msg being the variable of course. I need to load these in my specific html each.

EX___

New Message

<div id="mess_wrapper">
 <div id="new_mess_pop">
  <div id="inner_mess_wrapper">
      <span id="post_date_time">-- div.posthead h2 element here --</span>
       <div id="users_contact_info">-- .user-basic-info element here --</div>
         <div id="message_post">-- .entry-content element here --</div>
  </div>
 </div>
</div>
  <div id="message_holder">HIDDEN PLACE HOLDERS</div>

Can anyone help me to figure out the .get() and how to append them to the correct id automatically one the click event? I am teaching myself everything, so if someone can give me a good explanation and how to go about this it would be very grateful!

share|improve this question
Maybe it's just me, but that code does'nt make much sense? There's no data parameter in the $.get function, the $.each function does'nt really do anything etc. – adeneo Jan 25 at 19:37
You are probably correct ;) first time with .get() any better suggestions? – EasyBB Jan 25 at 19:41
eehm, not really, as I have no idea what it is you're trying to do ? – adeneo Jan 25 at 19:45
Trying to load the elements listed such as .postedhead h2 and have it placed in my id of post_date_time I had this working with using .load(msg , " .post"); though it grabbed the entire thing and it is defeating the purpose of me trying to make this code actually work. – EasyBB Jan 25 at 19:48
2  
It's just guessing, but maybe something like this FIDDLE ??? – adeneo Jan 25 at 20:12
show 3 more comments

1 Answer

up vote 1 down vote accepted
$('#view_mess').click(function() {
  var msg = $('.tdtopics a').attr('href');
  $.get(msg, function (data) {
      var elems = $(data);
      $('#post_date_time').append(elems.find('div.posthead h2'));
      $('#users_contact_info').append(elems.find('.user-basic-info'));
      $('#message_post').append(elems.find('.entry-content'));
  }, 'html');
  $('#mess_wrapper').show();
});
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.