| Current Path : /var/www/element/data/element_backup.2025.12.07/pressme.ru/js/ |
| Current File : /var/www/element/data/element_backup.2025.12.07/pressme.ru/js/common.js |
$(document).ready(function(){
$(window).resize(function(){
checkW();
});
checkW();
setTimeout(function(){
checkW();
},300);
});
function checkW(){
var w = $(window).width();
if(w<1123){
$('#wrapper').css({'overflow-x':'hidden','width':w});
}
};
$(document).ready(function(){
$('#contactform').submit(function(){
var action = $(this).attr('action');
$("#message").slideUp(750,function() {
$('#message').hide();
$('#submit')
.attr('disabled','disabled');
$.post(action, {
name: $('#name').val(),
email: $('#email').val(),
phone: $('#phone').val(),
comments: $('#comments').val()
},
function(data){
document.getElementById('message').innerHTML = data;
$('#message').slideDown('slow');
$('#contactform img.loader').fadeOut('slow',function(){$(this).remove()});
$('#submit').removeAttr('disabled');
if(data.match('success') != null) $('#contactform').slideUp('slow');
}
);
});
return false;
});
});
$(function(){
//document.getElementById("all").click();
$("#email").after('<input name="phone" type="text" id="phone" size="30" onfocus="if(this.value == \'Телефон\') { this.value = \'\'; }" onblur="if(this.value == \'\') { this.value = \'Телефон\'; }" value="Телефон" >');
});
$(function(){
$('#email').show();
});