Survey.StylesManager.applyTheme("bootstrapmaterial");
var json = { questionTitleLocation: "hidden",
questions: [
{name:"name", type:"text", title: "Please enter your name:", isRequired: true},
{name:"email", type:"text", inputType:"email", title: "Your e-mail:", isRequired: true, validators: [{type:"email"}]},
{name: "password", type: "text", inputType: "password", title: "Password:"}
]};
window.survey = new Survey.Model(json);
survey.onComplete.add(function(result) {
document.querySelector('#surveyResult').textContent =
"Result JSON:\n" + JSON.stringify(result.data, null, 3);
});
survey.onAfterRenderQuestionInput.add(function(sender, opt) {
var el = opt.htmlElement;
var question = opt.question;
if (question.getType() == 'text') {
var label = document.createElement('label');
label.classList.add('bmd-label-floating');
label.innerHTML = question.locTitle.textOrHtml;
el.parentNode.insertBefore(label, el);
}
});
$("#surveyElement").Survey({
model: survey
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>Floating labels for Boostrap Material theme, jQuery Survey Library Example</title>
<meta name="viewport" content="width=device-width" />
<script src="https://unpkg.com/jquery"></script>
<script src="/DevBuilds/survey-jquery/survey.jquery.min.js"></script>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons"/>
<link rel="stylesheet"href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css"
integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX"
crossorigin="anonymous"
/>
<script
src="https://unpkg.com/popper.js@1.12.6/dist/umd/popper.js"
integrity="sha384-fA23ZRQ3G/J53mElWqVJEGJzU0sTs+SvzG8fXVWP+kJQ1lwFAOkcUOysnlKJC33U"
crossorigin="anonymous"
></script>
<script
src="https://unpkg.com/bootstrap-material-design@4.1.1/dist/js/bootstrap-material-design.js"
integrity="sha384-CauSuKpEqAFajSpkdjv3z9t8E7RlpJ1UP0lKM/+NdtSarroVKu069AlsRPKkFBz9"
crossorigin="anonymous"
></script>
<script>
$(document).ready(function() {
$('body').bootstrapMaterialDesign();
});
</script>
</head>
<body>
<div id="surveyElement" style="display:inline-block;width:100%;">
</div>
<div id="surveyResult"></div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>