img:hover + button {z-index: 99999}
success: function(data){
$('#chat').append(data);
count_messages++;
if(count_messages > 100){
$('#chat > div.message:first-child').remove();
}
}
$('.open_popup_Mac, .open_popup_iPhone, .open_popup_iPhone_price, .open_popup_iPad, .open_popup_iPad_price, .open_popup_delivery_more, .open_popup_enter_form, .open_popup_delivery').click(function(){
var action = $(this).attr('.class').replace('open_', '');
$('.' + action).fadeIn(0);
$('.' + action).animate({top:"0", bottom:"0"}, 400);
$('header').animate({top:"-60px"}, 400);
});
function edit(id){
$.get("/edit.php",
{id:id},
function(c){
$("body").prepend(c);
$("#dialog").dialog({
autoOpen:true,
show:"fade",
hide:"fade",
modal: true,
buttons: {
"Изменить": function() {
Save();
},
"Отмена": function() {
$( this ).dialog( "close" );
}
}
});
});
return false
};
$res = mysql_query('SELECT * FROM `statja` WHERE `id` = $_GET[id]');
$row = mysql_fetch_assoc($res);
echo "<div id='dialog' title='Редактирование статьи'>
Тут то, что нужно из $row
</div>";
function in_upload(box){ // инициализация для загрузки через ajax
$(box).liteUploader({
script: '/upload_images/'
})
.on('lu:progress', function (e, percentage) {
$(this).parent().find('.upimtx .progressbar').css('width', percentage + '%');
})
.on('lu:success', function (e, response) {
obj = jQuery.parseJSON(response);
$(this).parent().find("img").remove();
$(this).parent().find(".images_hidden").val(obj.imagename);
$(this).parent().prepend(obj.image);
});
}
in_upload('#fileUpload_' + index); // вызываем функцию инициализации
function count_days($ot, $to){
$datetime1 = date_create($ot);
$datetime2 = date_create($to);
$interval = date_diff($datetime1, $datetime2);
if($interval->days > 1){
return $interval->days;
}else{
return 1;
}
}