$('#site').val().length >= 4
$('#site').val().indexOf(".")
$(document).click(function () {
if (! $(this).hasClass('inner-menu')) {
$('.inner-menu').slideUp(300);
}
});
$(function() {
$( "родительский элемент" ).on(".send-feed", "click", function() {
$(".prepp-hidden-block").animate({
height:'toggle'
}, 600).delay(50).queue(function(){
$(".request-bounce").addClass( 'animated bounceIn' );
$(this).dequeue();
});
});
});
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
mySlider.reloadSlider();
$.ajax( "example.php" )
.done(function() {
alert( "success" );
})
.fail(function() {
alert( "error" );
})
.always(function() {
alert( "complete" );
});
$('button').click(function () {
...// делаем все дела с AJAX
var status = "Есть" // засовываем результат работы AJAX в переменную
$(this).parent().next('td').text(status); // относительно нажатой кнопки ищем следующий столбец и вносим туда переменную
});