| Current Path : /var/www/element/data/www/opter.ru/js/ |
| Current File : /var/www/element/data/www/opter.ru/js/script.js |
$(document).ready(function() {
$('.hidebar').click(function() {
$.ajax({
url: '/change_pl_status.php',
type: 'post',
dataType: 'text',
data: {
'showBar' : "N"
}
});
document.getElementById('element-form-container').style.display='none';
document.getElementById('element-form-container1').style.display='block';
return false;
});
$('.showbar').click(function() {
$.ajax({
url: '/change_pl_status.php',
type: 'post',
dataType: 'text',
data: {
'showBar' : "Y"
}
});
document.getElementById('element-form-container').style.display='block';
document.getElementById('element-form-container1').style.display='none';
return false;
});
});