I am trying to get an element using JQuery's selector, but it does not find it even though the element actually exists. Moreover, I can actually find the element using getElementById.
For example:
$('#outputDiv') gives me a null value. But document.getElementById("outputDiv") returns me the Div I was trying to access.
Any idea?