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!
$.getfunction, the$.eachfunction does'nt really do anything etc. – adeneo Jan 25 at 19:37.get()any better suggestions? – EasyBB Jan 25 at 19:41.postedhead h2and have it placed in my id ofpost_date_timeI 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