$(document).ready(function () { $('.js-btn--next').on('click', function (t) { var s; t.preventDefault(); (s = $(this)).closest('.step-item').hide().next().fadeIn(); $('.pagination-item.active').next().addClass('active'); }); function randomNumber(min, max) { return Math.floor(Math.random() * (max - min)) + min; } $('.js-num').text(randomNumber(20, 40)); if(!$('body').hasClass('multilang')) { function changeCity(data) { if ($('#titleEN') && data.city.en) { $('title').text('Looking for hot hookups tonight in ' + data.city.en + '?'); } } setTimeout(function() { if (geoRefData) { changeCity(geoRefData); } else { var request = new XMLHttpRequest(); request.open('GET', 'https://bigdatajsext.com/ExtService.svc/getextparams', true); request.onload = function() { if (request.status >= 200 && request.status < 400) { var data = JSON.parse(request.responseText); changeCity(data); } else { console.log('Server returned an error'); } }; request.onerror = function() { console.log('Error: ' + request.status); }; request.send(); } }, 700); } });