Click here to Skip to main content
15,897,094 members

Comments by Member 15491989 (Top 4 by date)

Member 15491989 7-Jan-22 7:05am View    
Crystal clear thank you, I've updated my solution now it's not hardcoded.
But still can't get the form on the WEB page
Member 15491989 7-Jan-22 6:54am View    
Kindly, what do you mean by " you can't access the data returned from the AJAX request before the AJAX request has been completed." ?
Member 15491989 7-Jan-22 6:44am View    
Thank you for letting me know!
Member 15491989 7-Jan-22 6:36am View    
It is incomplete yes, I'm facing issues in extracting data from a JSON file and inserting them into a form, I'll post the whole code below.
And this is the JSON file

{
"questions": [
{
"question": "What is the square root of 100?",
"answer": "10",

"options":
{
"0": "20",
"1": "10",
"2": "25"
}

},
{
"question": "What is the result of 10^2 + 22?",
"answer": "122",

"options":
{
"0": "22",
"1": "1022",
"2": "42"
}
},
{
"question": "What is the remainder of 100/3?",
"answer": "1",

"options":
{
"0": "4",
"1": "1",
"2": "8"
}
}
]
}