This AJAX script loads more posts when a div at the bottom of the feed is clicked, but what im wondering is how i change the script to display the new posts at the top of the feed.. not the bottom.
Source code:
loadmore.php -
<?php
include('../general_scripts/connect.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
<link href="frame.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/jquery/1.3.0/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
//More Button
$('.more').live("click",function()
{
var ID = $(this).attr("id");
if(ID)
{
$("#more"+ID).html('<img src="moreajax.gif" />');
$.ajax({
type: "POST",
url: "ajax_more.php",
data: "lastmsg="+ ID,
cache: false,
success: function(html){
$("ol#updates").append(html);
$("#more"+ID).remove();
}
});
}
else
{
$(".morebox").html('no more to display.');
}
return false;
});
});
</script>
<style>
body
{
font-family:Arial, 'Helvetica', sans-serif;
color:#000;
font-size:15px;
}
a { text-decoration:none; color:#0066CC}
a:hover { text-decoration:underline; color:#0066cc }
*
{ margin:0px; padding:0px }
ol.timeline
{ list-style:none}ol.timeline li{ position:relative;border-bottom:1px #dedede dashed; padding:8px; }ol.timeline li:first-child{}
.morebox
{
font-weight:bold;
color:#333333;
text-align:center;
border:solid 1px #333333;
padding:8px;
margin-top:8px;
margin-bottom:8px;
}
.morebox a{ color:#333333; text-decoration:none; width: 400px;
}
.morebox a:hover{ color:#333333; text-decoration:none; width: 400px;
}
#container{margin-left:60px; width: 400px;
}
</style>
</head>
<body>
<div id='container'>
<ol class="timeline" id="updates">
<?php
$sql=mysql_query("SELECT * FROM updates ORDER BY item_id DESC LIMIT 16");
while($row=mysql_fetch_array($sql))
{
/* GETS THE NUMBER OF LIKES FOR POST */
$result1 = mysql_query("SELECT * FROM comments");
$comment_count = mysql_num_rows($result1);
/* GETS THE NUMBER OF LIKES FOR POST */
$result2 = mysql_query("SELECT * FROM likes");
$like_count = mysql_num_rows($result2);
?>
<!-- START OF THE HTML STYLING FOR THE UPDATE -->
<div class="title">
<!-- PRINT USERNAME -->
<span class="username"> <?php print $row['username']; ?></span>
<!-- PRINT NAME -->
<span class="name"> <?php print $row['name']; ?></span> </div>
<div class="thum" align="center"></div>
<div class="content"><span class="update"><?php print $row['item_content'] ?></span></div>
<div class="under-bar">
<p class="under-text"> comment (<?php print $comment_count ?>) like (<?php print $like_count ?>) <?php print $time_ago ?></p>
</div>
<div class="seperate"></div>
<!-- END OF THE HTML STYLING FOR THE UPDATE -->
<?php } ?>
</ol>
<div id="more<?php echo $msg_id; ?>" class="morebox">
<a href="#" class="more" id="<?php echo $msg_id; ?>">more</a>
</div>
</div>
</body>
</html>
ajax_more.php -
<?php
include('../general_scripts/connect.php');
if(isset($_POST['lastmsg']))
{
$lastmsg=$_POST['lastmsg'];
$result=mysql_query("SELECT * FROM updates WHERE item_id<'$lastmsg' ORDER BY item_id DESC LIMIT 7");
$count=mysql_num_rows($result);
while($row=mysql_fetch_array($result))
{
$msg_id=$row['item_id'];
$message=$row['item_content'];
?>
<div class="title">
<!-- PRINT USERNAME -->
<span class="username"> <?php print $row['username']; ?></span>
<!-- PRINT NAME -->
<span class="name"> <?php -print $row['name']; ?></span> </div>
<div class="thum" align="center"></div>
<div class="content"><span class="update"><?php print $row['item_content'] ?></span></div>
<div class="under-bar">
<p class="under-text"> comment (<?php print $comment_count ?>) like (<?php print $like_count ?>) <?php print $time_ago ?></p>
</div>
<div class="seperate"></div>
<?php
}
开发者_C百科
?>
<div id="more<?php echo $msg_id; ?>" class="morebox">
<a href="#" id="<?php echo $msg_id; ?>" class="more">more</a>
</div>
<?php
}
?>
Sorry about the ammount, just didnt want to miss anything out. I'm not asking you to write any code but simply point out how i could change this and which part makes it output below the feed.. not the top. Thanks :D!
You need to change your append to a prepend. Append adds it to the bottom, prepend to the top.
Change
$("ol#updates").append(html);
to
$("ol#updates").prepend(html);
精彩评论