I'm trying to assign content to a div and somehow it just isn't working.
document.getElementById('myID').innerHTML='New DIV Content';
(yes I'm trying this exact basic set of text)
I'm calling this as a part of a php generated javascript file and all of my other javascript calls from this script work as expected except this one even when I simplify it as shown above.
I can't see any reason for this call to fail so I'm just wondering if any of you may have run into any situations where this type of simple call has failed.
Could there be something causing a conflict, or is that just not a possibility?