// если четверг после 13, +2 дня (в понедельник)
if(day == 4 && hours >= 13) {
next_date.setDate(next_date.getDate()+2); // суббота
}
// если пятница до 13, +1 день (в пн)
if(day == 5 && hours <= 13) {
next_date.setDate(next_date.getDate()+1); // суббота
}
// если заказывают после 13 или в субботу, рассчитываем время доставки
if(hours >= 13 || day == 6) {{
next_date.setDate(next_date.getDate()+2);
//вернёт вт-пт для вс-ср и пн для сб
}
onmousemove
генерируется только когда вы двигаете над тем объектом к которому прикреплён этот листенер. Соответственно для генерации этого эвента над всей страницей надо будет прикреплять эвент к ней (или контейнеру который займёт всю область).The select event is sent to an element when the user makes a text selection inside it. This event is limited to<input type="text">
fields and<textarea>
boxes.
The keyup event is sent to an element when the user releases a key on the keyboard. It can be attached to any element, but the event is only sent to the element that has the focus. Focusable elements can vary between browsers, but form elements can always get focus so are reasonable candidates for this event type.
$('.section').find('.section_in:eq('+ i +')')...
//вернёт только элементы .section_in с индексом 'i' внутри каждого .section
});
$(document).ready(function(){
$('.my_form').validate({
...
$(document).ready(function(){
$('.my_form').each(function() {
$(this).validate({
...
$("#table tr").each( function(index, element){
$(element).append('<td></td>');
})