$(document).ready(function(){
$('.popup').bind('click',function(e){popwindow(e)});
});
function popwindow(e){
e.preventDefault();
var href=$(e.target).attr('href');
window.open(href,'','width=800,height=500,top=100,left=100,scrollbars=yes');
};
$(function() {
$('.tweetsmore').live("click",function()
{
var ID = $(this).attr("id");
if(ID)
{
$("#tweetsmore"+ID).html('
');
$.ajax({
type: "POST",
url: "tweetsmore.php",
data: "lastid="+ ID,
cache: false,
success: function(html){
$("div#updates").append(html);
$("#tweetsmore"+ID).remove();
}
});
}
else
{
$(".morebox").html('끝');
}
return false;
});
});
$(function() {
$('.followmore').live("click",function()
{
var ID = $(this).attr("id");
if(ID)
{
$("#followmore"+ID).html('
');
$.ajax({
type: "POST",
url: "followmore.php",
data: "lastid="+ ID,
cache: false,
success: function(html){
$("div#updates").append(html);
$("#followmore"+ID).remove();
}
});
}
else
{
$(".morebox").html('끝');
}
return false;
});
});