JavaScript
x
10
10
1
let x=[];
2
let array = []
3
const json1 = '{"https://www.w3schools.com/html/":"check w3 schools"}';
4
const obj1 = JSON.parse(json1);
5
array=Object.getOwnPropertyNames(obj1);
6
ul = document.createElement('ul');
7
ser.appendChild(ul);
8
x= document.createElement('li');
9
x.innerText="<a href="" + array[0]+ "">"+"</a>";//hyper link not clickable
10
ul.appendChild(x);
JavaScript
1
1
1
<div id="ser"></div>
the javascript code renders the unordered list but the link in the list() is not navigable.Please advice on solving this issue.
Advertisement
Answer
There are multiple fixes so take a look at this
JavaScript
1
12
12
1
let array = []
2
const json1 = '{"https://www.w3schools.com/html/":"check w3 schools"}';
3
const obj1 = JSON.parse(json1);
4
array = Object.getOwnPropertyNames(obj1);
5
const ul = document.querySelector('#ser').appendChild(document.createElement('ul'));
6
const x = document.createElement('li');
7
const a = document.createElement('a');
8
a.setAttribute("href", array[0]);
9
a.innerHTML = array[0];
10
x.appendChild(a);
11
ul.appendChild(x);
12