Passing Reference To Form From Non-input Field
May 27, 2004
I have a bunch of forms in my page, and want to pass a reference to the current form to a javascript function - when, say, a user clicks on a particular element. Normally, within any type of input field, I'd just add something like this:
onclick="my_function(this.form)"
Then, in my_function( form ) I could refer to form. No worries.
But here's the interesting bit. I also want to run the same function when the user clicks on any <a> tag within a form, like:
<a href="javascript: my_function(this.form)"> ... </a>
Problem is, with this code, the form reference isn't passed to the javascript function. the "this.form" bit doesn't work...
I find this rather curious. So the question is, how do I pass a reference to the current form from within a non input field?
View 5 Replies
ADVERTISEMENT
Mar 23, 2006
How can I reference a form's input field that has a dot in its name e.g object.name ?
View 3 Replies
View Related
Sep 1, 2011
I'm now working on kind of invoice form which in it the user can add as much input field as he wants.
The problem is that after adding a new input field - the content in the other fields is deleted.
Code:
View 8 Replies
View Related
Oct 20, 2009
I have an email which has some values attached to a link in the email that get passed to an online form on a website when clicked. Problem is the value is a price and the string includes a "$" which I need to remove. I've read through many examples and everyone seems to have an opinion (surprise). One suggests something like this: text2.value=text1.value.replace(/$/g,""); While someone else says its better to remove what you don't want. I am also scratching my head over should I place the value into a hidden field, scrub it then copy that into the proper field? and I imagine the best way would be to run it with an "onload" command instead or a event handler like a keystroke since the field is not typed?
View 4 Replies
View Related
Nov 19, 2011
I am new to JS and usually learn by studying code posted online and modify it to have it do what I need. Recently, I used a totaling plugin for an online ordering form which does the below:
item1 qty(user input text) * preset price = total price
item2 qty(user input text) * preset price = total price
item3 qty(user input text) * preset price = total price
[code].....
View 1 Replies
View Related
May 9, 2011
I want to write a generic function since I'm basically doing the same thing over and over. What I'm trying to do is to pass the name of the form and the specific field name to complete the following line: "var testdata = document.form.input.value;".
[Code]....
View 1 Replies
View Related
May 23, 2010
here is my problem :
my example url : [URL]
I need a JavaScript code that can get type , name & id from my example url and pass them to a form input value.
Code:
<form name="myform" >
<input type = "text" name = "type" value = type =111 >
<input type = "text" name = "name" value = name=jack >
<input type = "text" name = "id" value = id=2 >
</form>
i can't change my form input tag properties . i don't have access to it's value notice that i need a java-script code that it don't use a method in input tags and it can change the value of that input.
( i am creating a form using CCK in drupal & i don't want to use views module for some reason)
View 4 Replies
View Related
Apr 2, 2010
I have a function that gets the value of a clicked on <span> like this:
function getSelectedValue(id) {
return $("#" + id).find("dt a span.value").html();
}
and sets the value of a second span like this:
$("#state").html("value: " + getSelectedValue("state"));
When I echo that second span, I get the selected value from the first span. But I need to get that value into a hidden html form field, so I can pass it along with the $_POST array. How do I do this?
View 5 Replies
View Related
Jan 3, 2011
My question is commented in the script:
function Love(){
var req = {
ring : 'gold',
[Code]...
console.log(details.ring); // why does this return gold and not silver if req is passed by reference and we already changed its value above and so it's pointing to the same memory position?
View 11 Replies
View Related
Jun 3, 2011
I've have a function to take the value entered in a form text box, add 50 to it and put the result in another text box.
When I enter 650.5 I get 700.5 exactly how I'd expect. But when I enter -650.5 instead of getting -600.5 I get -650.050 as though it is failing to parse the float due to it being negative. My understanding of parseFloat was that it recognises negative numbers. Is there a nice simple way to get this to work?
View 1 Replies
View Related
May 4, 2009
I need to pass user input from a form to one database field. I'm relatively new to JS but the idea I had was to have several form elements and use JS to collect the users input and send all the values through a hidden element. What's happening is the variable names are being sent rather than the values. The code below is only passing to the next page. Limitations: I am editing an intranet site built by a 3rd party so a lot of the files we've been given are encrypted. I cannot change the method to post.
[Code]....
View 3 Replies
View Related
Nov 23, 2005
Is there a way, I could pass the reference to a pop up window to
another function?
Basically, this is what I want to
var win= window.open("x.htm".....)
SetValue(win,"txtName");
//-------------------------------------------
function SetValue (win, ctlID)
{
var obj=win.getElementByID(ctlID);
ctlID.value="Hi";
}
View 1 Replies
View Related
Apr 1, 2010
I have a function that changes the innerHTML of a DIV element. I want to pass to that function as a parameter a reference to the DIV to be changed. In the example below it works the first time (executed with the body onLoad event). As the subsequent function declaraton is rewritten by the function itself, it can no longer reference the targeted DIV. I tried to pass a string teference and use eval(), but this time it fails the third time it is executed.
Code:
<html>
<head>
<title>Passing Parameters to a Function (with object prameter)</title>
<script type="text/javascript">
[Code].....
View 6 Replies
View Related
May 11, 2010
I wrote this form to try to display the value of the chosen radio button on a text input.
<form>
Choose one choice...
<input type="radio" name="group1" value="5">Five<br>
<input type="radio" name="group1" value="10">Ten<br>
<input type="button" value="Get Result!" onClick="T1.value=group1.value"><br>
[Code]...
How come the onClick="T1.value=group1.value" results in undefined instead of 5 (or 10) ?
View 1 Replies
View Related
Dec 12, 2005
I have develop an ActiveX with Visual C++ 6
And I will call functions on this ActiveX from a javascript.
I know how to instantiate the activex object (with the balise <object>).
But how can I do to call a function of my ActiveX and pass to this function
some parameter by reference.
Here is what I have :
the function in the ActiveX :
void test(long *t, long FAR* nb)
{
t = 3 ;
}
And here is what I try to call this function in javascript:
var myT = 0;
my_control.test(myT); // here is the problem that
alert("T : " + myT);
But I receive the value 0
So how can I do to pass parameter by reference to a function of an ActiveX?
Is there anything to change in my function in the ActiveX?
View 2 Replies
View Related
Jun 7, 2010
I am having a form with two input fields. I want to enter some text in the first input field and then the second field should get the same text. Is there a simple way (maybe a plugin) to do this with jQuery? It would be perfect if I even could output all these input fields values as normal text in <p> or <li> tags.
View 2 Replies
View Related
Nov 19, 2010
I have this script where i call a jquery ajax to calclate something and then put it back in the form input so then i post everything to a php script where it insert it in mysql database. Here is the script :
<!--Date/Time Picker -->
$(document).ready(function(){
$("input#dep_d").AnyTime_picker(
[code]....
View 2 Replies
View Related
Jul 20, 2005
In a form I have an input field. It's supposed to get input form a
scanning device. Thus, the input might contain special characters (like
the Group Separator in a EAN barcode). Now, I want to manipulate a
little with the input in a javascript, but I'm not able to find the
Group Separator:
input = document.main.input.value;
var a = input.split("");
var i;
for(i=0;i<a.length;i++) {
if(/x1D/.test(a[i])) {
alert("GS");
}
}
This is a snip that parses the input, character by character, and gives
me an alert if the Group Separator (Hex: 1D) is found. But it never
matches, even if I know that the input string contains in. I have a
similar script written in Perl, an that script finds the Group Separtor.
What can I do to find the %"#¤ Group Separator??
View 4 Replies
View Related
Mar 4, 2010
Is there a way to give an input or textarea field the focus and set the focus to begin right at the end of the current text in the field?
View 3 Replies
View Related
Aug 19, 2010
I am trying to use SetAttribute to append a custom attribute to a form input. The code is below.
Code JavaScript:
function getpostdata(){
// Append the values[code].....
View 4 Replies
View Related
Oct 31, 2011
New to working with javascript and I've come up with a function. I have a form with a dropdown and input field:
<form>
<select name="warranty" id="warranty" onChange="doadate()">
<option value="Select">Select</option>
<option value="In Warranty">In Warranty</option>
<option value="Out of Warranty">Out of Warranty</option>
<option value="DOA" selected>DOA</option>
</select>
<input name="doadate" type="text" id="doadate" value="<? echo $doadate; ?>"
size="20" readonly>
</form>
I need the input field to be disabled unless DOA is selected in the select form element. I've started on page load with document.form1.doadate.disabled=true. Then I've put an onChange handler in the select to call the function below:
<script type="text/javascript">
function doadate(){
val = document.form1.warranty.value;
if(val=='DOA'){
document.form1.doadate.disabled=false;
} else{
document.form1.doadate.disabled=true;
}}
</script>
But it's not working, it stays disabled after load even when the DOA is selected in the drop down form field.
View 4 Replies
View Related
Sep 13, 2011
Basically I need to:
1. Pull a value from inside a div
<div id="number">(invoice #1017)</span>
2. Populate a form input field with that value.
View 4 Replies
View Related
Feb 15, 2012
I need to show the date picker in an input field that is inside a form. I have index.php which has the code for the date picker, I just need to link it to the input field. I have the form in another file as follows:
<form id="inputArea" action="index.php?action=login" method="post">
<input type="text" name="datepicker" value="<?php echo $array['date'];?>"/>
<label for="date">Date of Birth (mm-dd-yyy):</label>
[code]....
View 2 Replies
View Related
Jul 29, 2010
Tried searching but didn't seem to find a solid solution to my problem I'm trying to pass a value to an input form field, from a function. Here is my code
PHP Code:
<script>
function createDiv(sceneNum, startTime, endTime, dialog, notes)
[code]....
View 3 Replies
View Related
Apr 10, 2011
I am working on a javascript for my blackberry. I am trying to capture the latitude and longitude of that phone. I am able to get the coordinates in an alert box but am having a little trouble writing it to a form input field.
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "[URL]">
<html xmlns="[URL]" xml:lang="en" lang="en">
<head><title>GPS Testing</title>
</head><body>
<script type="text/javascript">
if(blackberry.location.GPSSupported){
document.write("Your device supports GPS locating");
blackberry.location.onLocationUpdate(window.alert("Latitude: " + blackberry.location.latitude + " Longitude: " + blackberry.location.longitude));
var lat = blackberry.location.latitude();
var lng = blackberry.location.longitude();
blackberry.location.refreshLocation();
document.write(lat);
}
</script></body></html>
I am only able to test with Blackberry. I was trying to create a couple of variables with the "var lat =" and var lng =".
With this script I get the alert window and when I click ok it writes "Your device supports ...".
View 5 Replies
View Related
Aug 31, 2006
I have a form that appears several times on a page, and would rather not assign IDs. Is there a way to have my validation function focus() a text input without IDs?
View 7 Replies
View Related