querySelector returns null when searched for the id "#b>a", but getElementById returns the correct element. What's going on?
var x = document.querySelector('#b>a');
console.log(x);
var y = document.getElementById("b>a");
console.log(y);
Name <input type="text" id="b>a">