<form action="https://loans-qa.tcsbank.ru/api/partners/v1/lightweight/create" method="post" >
<input name="shopId" value="test_online" type="hidden"/>
<input name="showcaseId" value="test_online" type="hidden"/>
<input name="promoCode" value="default" type="hidden"/>
<input name="sum" value="99000.00" type="hidden">
<input name="itemName_0" value="Apple iPhone 7 256 GB Onyx" type="hidden"/>
<input name="itemQuantity_0" value="1" type="hidden"/>
<input name="itemPrice_0" value="59000.00" type="hidden"/>
<input name="itemCategory_0" value="iPhone Apple" type="hidden"/>
<input name="itemName_1" value="Apple iPhone 6S 128GB Onyx" type="hidden"/>
<input name="itemQuantity_1" value="1" type="hidden"/>
<input name="itemPrice_1" value="40000.00" type="hidden"/>
<input name="itemCategory_1" value="iPhone Apple" type="hidden"/>
<input name="customerEmail" value="customer@tinkoff.ru" type="hidden"/>
<input name="customerPhone" value="+79031234567" type="hidden"/>
<input type="submit" value="Купи в кредит"/>
</form>
Задача отследить баг: при вводе в поле input появляется клава, и поле прячется.
<p>
<label><input type="radio" name="set-lang" value="RU" /> RU</label>
<label><input type="radio" name="set-lang" value="EN" /> EN</label>
</p>
<script>
function langRoute(){
if (localStorage.getItem('lang')=='RU' ) window.location.href = 'index-ru.html';
if (localStorage.getItem('lang')=='EN' ) window.location.href = 'index-en.html';
}
$(document)
.on('change','input[name="set-lang"]',function(){
localStorage.setItem('lang',$(this).attr('value'));
langRoute();
})
.ready(function(){
langRoute(); //Если нужно запомнить выбор пользователя
})
</script>