This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" data-anchor="to-section"> | |
<section id="to-section"></section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Unisender | |
require_once("unisender_api.php"); //подключаем файл класса | |
$api_key = "123456"; //API-ключ к вашему кабинету | |
$uni = new UniSenderApi($api_key); //создаем экземляр класса, с которым потом будем работать | |
// Данные о новом подписчике | |
$user_lists = "7114782"; | |
$user_tag = urlencode("Added using API"); | |
if (!$user_phone) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************** | |
FAQ Open | |
***************************************************/ | |
$('[data-faq=question]').click(function(){ | |
event.preventDefault(); | |
$(this).parent($('.faq-inner__question-one')).toggleClass('active'); | |
$(this).next($('.faq-inner__answerwrap')).slideToggle('slow'); | |
}); | |
/************************************************** | |
End FAQ Open |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.form__input-file { | |
position: absolute; | |
left: 0; | |
bottom: 0; | |
width: 0.1px; | |
height: 0.1px; | |
opacity: 0; | |
overflow: hidden; | |
z-index: -1; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("input[type='tel']").mask("+7 (999) 999-99-99", {autoclear: false}); | |
http://digitalbush.com/projects/masked-input-plugin/ |
NewerOlder