Last active
October 3, 2018 13:44
-
-
Save enterpredator/4586b3e846afc5fdf94134f34a5e0cb2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script> | |
<script src="https://270927.selcdn.ru/satelead-static/widget/1.0/satelead.widget.lib.js"></script> | |
<script> | |
$(document).ready(function() { | |
$('#satelead_widget').sateleadQuiz(onQuizComplete) | |
}); | |
function onQuizComplete(quizResult) { | |
console.log(JSON.stringify(quizResult)); | |
} | |
</script> | |
</head> | |
<body style="background-color: #eaeaea;"> | |
<div id="satelead_widget"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment