Tagged Questions
0
votes
2answers
38 views
submit form to new window without address bar
This code will submit a form to a new window
<form action="..." method="post" target="_new">
But is it possible to make the new window start without the address bar and define its size ?
0
votes
2answers
59 views
easy way to use getElementsByTagName to change form target?
I have a form in a PHP file that I want to include in various other files which will be in iframes in other pages. In some cases, the form target should be _top but in others _blank. So it seems to me ...
3
votes
2answers
359 views
obtain reference to _blank target window on form submit
I have a form that is opening a new window on submit:
<form id="form-id" target="_blank">
I want to access the newly created window via javascript, without manually generating a unique name ...
0
votes
1answer
796 views
jquery to change form target value
I need to make a button's target different from the main submit value. I am using jquery with code below:
HTML:
<form action="somepage" id="cartform" target="_parent" method="post">
(So ...
0
votes
2answers
383 views
Form targeting iframe
I have one index.html page with two iframe:
<html><head><title>DOM KPI</title></head>
<body bgcolor='oldlace'>
<iframe src="main.cgi" id=main width=40% ...
-1
votes
2answers
955 views
Is form target=“_self” is vulnerable?
I have a confusion, i was going through a blog and in its comment it was suggested that target="_self" is vulnerable. It is true, if yes how we can fix it?
<form action="../process.php" ...
1
vote
0answers
282 views
Content inside IFRAME not showing when targeted from html FORM (only in Internet Explorer)
THE PROBLEM
I am attempting to create an AJAX style photo upload by directing the action (a php page) of a html form to a target (an iframe).
The below example works flawlessly in Google Chrome & ...
2
votes
0answers
215 views
form target=“blank” takes forever to load the new page in Safari
In my code, I have this form tag:
<form target="_blank" method="POST">
Then afterwards I have my inputs then a submit button. When I press the submit button in Windows Safari, the computer ...
5
votes
2answers
4k views
Jquery to change a form's target
I want to change the form's target based on the option which is selected.
<form id='post_form' target="targetvalue">
<select id="select" name="select">
<option ...
0
votes
2answers
520 views
Loading results of form into specified DIV
I am trying to target a specific div with the results of a form post.
I have found the below code, but am unclear on where the URL for the page that handles the form data is specified. Any help ...
0
votes
1answer
193 views
JS to add TARGET to form
I need to insert target="_top" into a < form>. The form is being auto-generated, so I can't just code it in. Is there some jquery or js I could use to add a target to a form?
The form's id is ...
2
votes
0answers
159 views
Submitting a form into an iframe in another page
I have a web page called index1.aspx that contains an iFrame called main_iframe.
In another page called index2.aspx I have an iFrame called iframe2
Now, my problem is that I'm trying to submit a form ...
0
votes
1answer
290 views
Form Submission in Wordpress
Hi
I have another very strange problem.
I have a custom HTML form in wordpress page whose target is set to a page like "http://domain.com/contact-us/"
When when the form is submitted, it said ...
1
vote
1answer
265 views
Submitting a form to a new window using JavaScript - with Strict DocType
Ok, so here's my code for submitting the form:
document.forms['formid'].submit();
The Form Target attribute is deprecated for the DocType I'm using -
...
0
votes
0answers
2k views
HTML Form Target directed to IFRAM working in FF but not IE
I have a form which consists of two different targets. One target submits the form and the other presents a preview of the form data. My only issue here is that my logic works fine in firefox however ...
1
vote
1answer
280 views
target form to specific browser tab
Is there a cross-browser compatible way to post a form in one tab of the browser to another (which I know is open and is of the same domain)?
I tried window.name='some_name'; and target='some_name' ...
2
votes
4answers
440 views
Perform function on form submit
Hopefully this is a pretty simple question! I've got the code working in jQuery to listen for a specific form on a page to be submitted and perform an alert when it is.. I.e.: The form itself ...
2
votes
2answers
3k views
How do I set the target frame for form submission in ASP.NET?
I have an asp.net page in an iframe where all links target _blank
<base target="_blank" />
But I want the form on it to submit to _self (i.e. the iframe where the page is located) when the ...
3
votes
6answers
6k views
JavaScript post form data to new window without “target”
What?
I would like to be able to do a post request (does not have to be form data) to a new window without using the target attribute (XHTML validation).
Why?
I have a webapp (using jQuery) where the ...
