| Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_sef/assets/js/ |
| Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_sef/assets/js/infotexts.js |
function jsToggleInfoText()
{
// Toggle state
jsInfoTextShown = !jsInfoTextShown;
// Show/hide div
$('jsInfoText').style.display = (jsInfoTextShown ? 'block' : 'none');
// Toggle link text
$('jsInfoTextLink').innerHTML = '(' + (jsInfoTextShown ? jsInfoTextHide : jsInfoTextShow) + ')';
// Save new state using AJAX
var url = jsInfoTextUrl + '&state=' + (jsInfoTextShown ? '1' : '0');
new Request({
'url': url,
'method': 'GET',
'onSuccess': function(text, xml) {
// Do nothing
}
}).send();
}