This might be a really simple answer but I just spent the last hour trying to figure out why my php page was refreshing three times after the initial load.
<img src="#" style="what:ever;" alt="" />
The culprit turned out to be a number symbol in the source attribute. Everything works as expected after I changed the code to:
<img src="" style="what:ever;" alt="" />
This image tag does get modified by jquery if that is relavant I do not know.
So why did I just waste the last hour of my life?
src="#"is basically shorthand for "the current url". Which is invalid for an image, since you'd be trying to load a chunk of html as an image. – Marc B Oct 31 '12 at 14:05