chernyhmihail
9/22/2015 - 2:51 PM

Определение переменой в адресной строке

Определение переменой в адресной строке

 jQuery(document).ready(function() {
      url=document.location.href;
      href1=url.replace("http://domen.net/?","");
      if (href1=="help"){ /*переменная в ссылке http://domen.net/?help*/
       setTimeout(function(){
       jQuery("#modal1").addClass("main-active");
       jQuery("#overlay").css("display","block");
       jQuery(".open_modal.help-button").click(function(){
       jQuery("#modal1").removeClass("main-active");
       })
       },500);
      }

   });