I want an iframe to initially have src
as blank and then once the page loads; call a JS function and then set the src
value to an actual one..
So is <iframe src="#" />
valid OR do I need to use something else like javascript:;
, etc
just <iframe src='about:blank'></iframe>