In Form I need to create button after click it will open popup windows and use value in editbox
Like this http://www.abcd.com/studentgrade.php?stdmame = {value in editbox1}?Grade = {value in editbox2}
I see URL Parameter in bottom of link in form button
but i don't know how to refer value in editbox to this URL Parameter
I try URL PARAMETER
stdname =document.getElementsByName('editbox1')&Grade =document.getElementsByName('editbox2')
but it's not work
help me please
Best Regards
URL Parameter refer to value in editbox
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
Re: URL Parameter refer to value in editbox
If you set the form's 'Method' propetry to 'get' then the form will be submitted with URL parameters.
Re: URL Parameter refer to value in editbox
but after i submit I need open that page as popup window
with button type "submit" it didn't have any option etc. target window or frame like button type "link"
so how can I use URL Parameter with submit and after that open page as popup window?
best regards
with button type "submit" it didn't have any option etc. target window or frame like button type "link"
so how can I use URL Parameter with submit and after that open page as popup window?
best regards
Re: URL Parameter refer to value in editbox
There is no standard option to open a popup window with URL parameters. This requires a custom script.
Note that forms in WWB are standard HTML functionality so anything that works anywhere else will also work in WWB.
Note that forms in WWB are standard HTML functionality so anything that works anywhere else will also work in WWB.
Re: URL Parameter refer to value in editbox
thanks a lot 
