Issue loading external JSON with SurveyJS
I have the following Codepen working with a very simple example of SurveyJS. It uses the following JSON:
var json = {
"questions": [{
"type": "text",
"title": "Test question 1",
"name": "Test question"
},
{
"type": "comment",
"title": "Test question 2",
"name": "Test question 2"
},
]
}
When I try to use a remote file for the JSON the new Codepen is not working.
I tried requesting the JSON as follows:
var giturl = "https://gist.githubusercontent.com/flowtrader2016/cdb63289fc3b4c81df9186e339233ffa/raw/1ee651735f501d5288082a0f3147ea48dc07911c/surverytest.json"
$.getJSON( giturl, function (data) {
var json = data
});
I'm just starting to learn a bit of Javascript so appreciate any help with this.
javascript jquery json surveyjs
add a comment |
I have the following Codepen working with a very simple example of SurveyJS. It uses the following JSON:
var json = {
"questions": [{
"type": "text",
"title": "Test question 1",
"name": "Test question"
},
{
"type": "comment",
"title": "Test question 2",
"name": "Test question 2"
},
]
}
When I try to use a remote file for the JSON the new Codepen is not working.
I tried requesting the JSON as follows:
var giturl = "https://gist.githubusercontent.com/flowtrader2016/cdb63289fc3b4c81df9186e339233ffa/raw/1ee651735f501d5288082a0f3147ea48dc07911c/surverytest.json"
$.getJSON( giturl, function (data) {
var json = data
});
I'm just starting to learn a bit of Javascript so appreciate any help with this.
javascript jquery json surveyjs
add a comment |
I have the following Codepen working with a very simple example of SurveyJS. It uses the following JSON:
var json = {
"questions": [{
"type": "text",
"title": "Test question 1",
"name": "Test question"
},
{
"type": "comment",
"title": "Test question 2",
"name": "Test question 2"
},
]
}
When I try to use a remote file for the JSON the new Codepen is not working.
I tried requesting the JSON as follows:
var giturl = "https://gist.githubusercontent.com/flowtrader2016/cdb63289fc3b4c81df9186e339233ffa/raw/1ee651735f501d5288082a0f3147ea48dc07911c/surverytest.json"
$.getJSON( giturl, function (data) {
var json = data
});
I'm just starting to learn a bit of Javascript so appreciate any help with this.
javascript jquery json surveyjs
I have the following Codepen working with a very simple example of SurveyJS. It uses the following JSON:
var json = {
"questions": [{
"type": "text",
"title": "Test question 1",
"name": "Test question"
},
{
"type": "comment",
"title": "Test question 2",
"name": "Test question 2"
},
]
}
When I try to use a remote file for the JSON the new Codepen is not working.
I tried requesting the JSON as follows:
var giturl = "https://gist.githubusercontent.com/flowtrader2016/cdb63289fc3b4c81df9186e339233ffa/raw/1ee651735f501d5288082a0f3147ea48dc07911c/surverytest.json"
$.getJSON( giturl, function (data) {
var json = data
});
I'm just starting to learn a bit of Javascript so appreciate any help with this.
javascript jquery json surveyjs
javascript jquery json surveyjs
asked Nov 19 '18 at 16:39
ade1eade1e
1,76011021
1,76011021
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I've slightly modified your codepen - https://codepen.io/anon/pen/ZmxGzW
$(document).ready(function() {
console.log("ready");
var giturl = "https://gist.githubusercontent.com/tsv2013/43c1e94c6e663e242d772ba9f79e8c2f/raw/1a9378226b633459037c798cf44354b631f9a9c9/surverytest.json";
$.ajax({
type:"GET",
url: giturl,
crossDomain: true,
success: function (data) {
console.log("received: " + JSON.stringify(data));
var survey = new Survey.Model(JSON.parse(data));
survey
.onComplete
.add(function (result) {
document
.querySelector('#surveyResult')
.innerHTML = "result: " + JSON.stringify(result.data);
});
$("#surveyElement").Survey({model: survey});
}
});
console.log("sent");
});
And your survey JSON has an error - an extra comma
By the way - any example on https://surveyjs.io/Examples/Library/ can be opened in pluker via single mouse click on the Edit in Plunker
button
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53379091%2fissue-loading-external-json-with-surveyjs%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I've slightly modified your codepen - https://codepen.io/anon/pen/ZmxGzW
$(document).ready(function() {
console.log("ready");
var giturl = "https://gist.githubusercontent.com/tsv2013/43c1e94c6e663e242d772ba9f79e8c2f/raw/1a9378226b633459037c798cf44354b631f9a9c9/surverytest.json";
$.ajax({
type:"GET",
url: giturl,
crossDomain: true,
success: function (data) {
console.log("received: " + JSON.stringify(data));
var survey = new Survey.Model(JSON.parse(data));
survey
.onComplete
.add(function (result) {
document
.querySelector('#surveyResult')
.innerHTML = "result: " + JSON.stringify(result.data);
});
$("#surveyElement").Survey({model: survey});
}
});
console.log("sent");
});
And your survey JSON has an error - an extra comma
By the way - any example on https://surveyjs.io/Examples/Library/ can be opened in pluker via single mouse click on the Edit in Plunker
button
add a comment |
I've slightly modified your codepen - https://codepen.io/anon/pen/ZmxGzW
$(document).ready(function() {
console.log("ready");
var giturl = "https://gist.githubusercontent.com/tsv2013/43c1e94c6e663e242d772ba9f79e8c2f/raw/1a9378226b633459037c798cf44354b631f9a9c9/surverytest.json";
$.ajax({
type:"GET",
url: giturl,
crossDomain: true,
success: function (data) {
console.log("received: " + JSON.stringify(data));
var survey = new Survey.Model(JSON.parse(data));
survey
.onComplete
.add(function (result) {
document
.querySelector('#surveyResult')
.innerHTML = "result: " + JSON.stringify(result.data);
});
$("#surveyElement").Survey({model: survey});
}
});
console.log("sent");
});
And your survey JSON has an error - an extra comma
By the way - any example on https://surveyjs.io/Examples/Library/ can be opened in pluker via single mouse click on the Edit in Plunker
button
add a comment |
I've slightly modified your codepen - https://codepen.io/anon/pen/ZmxGzW
$(document).ready(function() {
console.log("ready");
var giturl = "https://gist.githubusercontent.com/tsv2013/43c1e94c6e663e242d772ba9f79e8c2f/raw/1a9378226b633459037c798cf44354b631f9a9c9/surverytest.json";
$.ajax({
type:"GET",
url: giturl,
crossDomain: true,
success: function (data) {
console.log("received: " + JSON.stringify(data));
var survey = new Survey.Model(JSON.parse(data));
survey
.onComplete
.add(function (result) {
document
.querySelector('#surveyResult')
.innerHTML = "result: " + JSON.stringify(result.data);
});
$("#surveyElement").Survey({model: survey});
}
});
console.log("sent");
});
And your survey JSON has an error - an extra comma
By the way - any example on https://surveyjs.io/Examples/Library/ can be opened in pluker via single mouse click on the Edit in Plunker
button
I've slightly modified your codepen - https://codepen.io/anon/pen/ZmxGzW
$(document).ready(function() {
console.log("ready");
var giturl = "https://gist.githubusercontent.com/tsv2013/43c1e94c6e663e242d772ba9f79e8c2f/raw/1a9378226b633459037c798cf44354b631f9a9c9/surverytest.json";
$.ajax({
type:"GET",
url: giturl,
crossDomain: true,
success: function (data) {
console.log("received: " + JSON.stringify(data));
var survey = new Survey.Model(JSON.parse(data));
survey
.onComplete
.add(function (result) {
document
.querySelector('#surveyResult')
.innerHTML = "result: " + JSON.stringify(result.data);
});
$("#surveyElement").Survey({model: survey});
}
});
console.log("sent");
});
And your survey JSON has an error - an extra comma
By the way - any example on https://surveyjs.io/Examples/Library/ can be opened in pluker via single mouse click on the Edit in Plunker
button
answered Nov 22 '18 at 12:45
TSVTSV
5,76811830
5,76811830
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53379091%2fissue-loading-external-json-with-surveyjs%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown