Шаг 1.Подключите загрузчик
Для этого добавьте в заголовок head HTML-страницы строку следующего вида:
<head>
...
<script src="https://alutech-group.com/app/gate/js/calcLoader.js"></script>
...
</head>
Шаг 2. Создайте контейнер для калькулятора
<body>
<div class="calc"></div>
</body>
Шаг 3. Создайте калькулятор
<script>
calcLoader.ready(function(){
ourJquery(".calc").svCalc();
});
</script>
Результат
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>Калькулятор стоимости секционных ворот</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://alutech-group.com/app/gate/js/calcLoader.js"></script>
<script>
calcLoader.ready(function(){
ourJquery(".calc").svCalc();
});
</script>
</head>
<body>
<div class="calc"></div>
</body>
</html>