Hello all,
For some reason, this line of code will not execute:
$("#successfulsubmit h4").append('Click to Exit');
It is within this block now, but I have tried it in other places…
setTimeout(function(){
$("#successfulsubmit h4").append('Click to Exit');
$("#blackoverlay, #successfulsubmit").click(function(e){
$("#blackoverlay, #successfulsubmit").remove();
});
This is the associated HTML:
<div id="successfulsubmit">
<h3> </h3>
<p> </p>
<h4> </h4>
</div>
It’s on this page (emailbox.js).
Is it simple to know why that append statement won’t work when there are other .append() statements that work fine?
Thanks all!