Issue
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
Solution
just <iframe src='about:blank'></iframe>
Answered By - ariel
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.