$.post( "index.php", { name: "John" } )
.done(function( data ) {
alert( "Ответ сервера: " + data );
});
$(function(){
$(document).on('submit', '[data-action="add"]', function (e) {
e.preventDefault();
$.ajax({
url: this.action,
type: this.method,
data: {
name: $('#name').val(),
check: ($('#check').prop('checked'))?1:0
}
}).done(function (data) {
$(".stat_ok").html(data);
$(".stat_ok").fadeIn();
});
});
});
$(function(){
$(document).on('submit', '[data-action="add"]', function (e) {
e.preventDefault();
$.ajax({
url: this.action,
type: this.method,
data: $( this ).serialize()
}).done(function (data) {
$(".stat_ok").html(data);
$(".stat_ok").fadeIn();
});
});
});
max-width: 1204px;
margin: 0 auto;
.header { min-width: 1204px; }
.header::after { min-width: 1204px; }
$(window).scroll(function(){
if ($(this).scrollTop() > 1){
$(".top_panel").stop().animate({height: "60px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "60px"}, 200);
$(".main_menu").stop().animate({lineHeight: "60px"}, 200);
}else{
$(".top_panel").stop().animate({height: "90px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "90px"}, 200);
$(".main_menu").stop().animate({lineHeight: "90px"}, 200);
}
});
var flagPosition=0;
$(window).scroll(function(){
if ($(this).scrollTop() > 1){
if(flagPosition!=1) {
flagPosition=1;
$(".top_panel").stop().animate({height: "60px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "60px"}, 200);
$(".main_menu").stop().animate({lineHeight: "60px"}, 200);
}
} else {
if(flagPosition!=0) {
flagPosition=0;
$(".top_panel").stop().animate({height: "90px"}, 200);
$(".logo_cont").stop().animate({lineHeight: "90px"}, 200);
$(".main_menu").stop().animate({lineHeight: "90px"}, 200);
}
}
});
$("h3").each(function() {
var text=$(this).html();
if(text.length>300) {
$(this).html(text+' добавочный текст');
}
});
$("h3").each(function() {
var text=this.nextSibling.nodeValue;
this.nextSibling.nodeValue=text.length+" / "+text;
});
.block-1 {position:fixed;left:0;top:0;width:50%;height:100%;background:blue;color:#fff;overflow:auto;}
.block-2 {position:fixed;right:0;top:0;width:50%;height:100%;background:green;color:#fff;overflow:auto;}