Maybe someone can give me a hint here?
Let's say I have a URL like . . .
http://192.168.0.30:4545/ViewCard.php
How do I pass this value into the IFrame's URL as a memory variable, or some may say as a parameter?
I am wondering if this is possible inside the WYSIWYG Web Builder interface itself?
I already know how to set an iFrame src= in JavaScript so this is not what i am asking.
I am asking if you can do this directly into the WYSIWYG Web Builder URL input location and have to run.
Thanks so much in advance!
Pete,
InLineFrame URL?
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
- Pablo
- Posts: 23767
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: InLineFrame URL?
First note that this not specific to WWB. This is standard HTML functionality.
Parameters can be added via http://192.168.0.30:4545/ViewCard.php?parameter=value
You can also use JavaScript to control the URL:
document.getElementById['iframe1'].src = URL;
Parameters can be added via http://192.168.0.30:4545/ViewCard.php?parameter=value
You can also use JavaScript to control the URL:
document.getElementById['iframe1'].src = URL;
-
-
- Posts: 1909
- Joined: Tue Jan 01, 2019 5:50 pm
Re: InLineFrame URL?
Have you looked at using the Go menu and an inline frame?
Alan
Alan
-
-
- Posts: 65
- Joined: Thu Sep 28, 2023 12:29 pm
Re: InLineFrame URL?
I am wanting to pass the entire URL not just parameters. So the parameter or variable would contain the entire http://xxx.xxx.xxx.xxx/webpage string.