$("#one1").on("click", function() {
if ($("#one1").prop("checked"))
{
$(".main-block").css("display", "none");
}
else
{
$(".main-block").css("display", "block");
}
});
$ mogrify -resize 165x165 *.png
$logs = file('log');
foreach($logs as $num => $line)
{
/**
* Регулярное выражение нужно делать по своему примеру
*/
preg_match('/F=<(.*?)>.*?RCPT\s<(.*?)>/', $line, $recipient);
if (isset($recipient[1]) && isset($recipient[2]))
{
echo "Sender: " . $recipient[1] . " Recipient: " . $recipient[2] . "\n";
}
}
button#search_button {
background: url('img/search.png') no-repeat center left;
height: 36px;
width: 90px;
text-align: end;
}
var timesArray = [];
$('.menu').hover(
function()
{
var id = jQuery.data(this);
timesArray[id] = setTimeout(function() {
//Показываем меню
$(this).css({'display' : 'block'});
timesArray[id] = "";
}, 500);
},
function()
{
var id = jQuery.data(this);
//Скрываем меню
$(this).css({'display' : 'none'});
if (timesArray[id])
{
clearTimeout(timesArray[id]);
}
}
);