%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 188.40.95.74 / Your IP : 216.73.216.142 Web Server : Apache System : Linux cp01.striminghost.net 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64 User : vlasotin ( 1054) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/vlasotin/www/mojadmin/resources/tinymce/plugins/openmanager/assets/fileupload/js/ |
Upload File : |
// Andy Langton's show/hide/mini-accordion @ http://andylangton.co.uk/jquery-show-hide // this tells jquery to run the function below once the DOM is ready $(document).ready(function() { // choose text for the show/hide link - can contain HTML (e.g. an image) var showText='Show'; var hideText='Hide'; // initialise the visibility check var is_visible = false; // append show/hide links to the element directly preceding the element with a class of "toggle" $('.toggle:visible').prev().append(' <a href="#" class="toggleLink">'+hideText+'</a>'); $('.toggle:hidden').prev().append(' <a href="#" class="toggleLink">'+showText+'</a>'); // hide all of the elements with a class of 'toggle' //$('.toggle').hide(); // capture clicks on the toggle links $('a.toggleLink').click(function() { // switch visibility is_visible = !is_visible; // change the link text depending on whether the element is shown or hidden if ($(this).text()==showText) { $(this).text(hideText); $(this).parent().next('.toggle').slideDown('normal'); } else { $(this).text(showText); $(this).parent().next('.toggle').slideUp('normal'); } // return false so any link destination is not followed return false; }); });