Работа с параметрами URL в javascript

Задача реализовать скрытие некоторых элементов страницы на основании параметров в запросе. Пример URL: http://mypage.com?hidePrintButton=true В этом случае нам нужно скрыть кнопку печати. Реализация (без использования jQuery): <script language='JavaScript'> window.onload = function() { if(document.URL.indexOf('hidePrintButton=true')!==-1){ document.getElementById('printButton').style.visibility='hidden'; } } </script> <button id="printButton" class="link icon iconPrint notPrintable pagePrint" title="Do print page" type="button"></button>  

Leave a Reply

Your email address will not be published. Required fields are marked *




Enter Captcha Here :