$("#from_date").datepicker({
dateFormat: 'dd/mm/yy',
changeMonth: true,
changeYear: true
});
$("#to_date").datepicker({
dateFormat: 'dd/mm/yy',
changeMonth: true,
changeYear: true
});
});
$(document).on('click', '.bt-deletar', function(){
$(this).parents('li').remove();
});
// Hover box editar perfil
function hover_perfil_box() {
if ($('.lista-lugares').size() > 0) {
$(".lista-lugares li").on('mouseover',function (e){
e.preventDefault();
$(this).children(".details").stop().animate({ "top": "94px" }, "fast" );
});
$(".lista-lugares li").on('mouseleave',function (e){
e.preventDefault();
$(this).children(".details").stop().animate({ "top": "120px" }, "fast" );
});
}
}
$(document).on('click', '.unblock_user', function(){
$(this).parents('li').addClass('none');
});
$(document).on('click','a.circle, div.msg-content-box',function(){
$(this).parents('div.msg-content-box').removeClass('read');
$(this).removeClass('read');
});
$(document).on('click','a.folder, a.del',function(){
id = $(this).parents('div.msg-content-box').prop('id')
$("div[id="+id+"]").fadeOut("slow")
$.fancybox.close();
1500 LOC