Have you ever wondered about the source of an iframe when it looks like this:
javascript:'';
Take a look at this example:
<iframe id="SpControlFrame1" name="SpControlFrame1" src="javascript:'';" path_src="index.php?cmd=YYY" ></iframe>
What exactly is happening here? What instructions is the browser receiving with src="javascript:'';" ?
And don't forget about "path_src" - what role does it play in all of this?
Thank you, Chris