Drop Down & Text Input For The Same Field

Oct 3, 2005

My database saves the cars make and model to the row in the database. On the "Add a Job" page, you have to enter the make and model of the car in by hand. I'm looking for a way to have these in a dropdown list, but if the make/model isn't in the list to be able to add it manually.

I can get the makes and models form the database and get them to fill a dropdown list, but then there isn't any provision for entering a make/model manually without going into PHPMyAdmin.

i figured this would probably be best done in JavaScript, but can't find any info on scriptsearch, hotscripts, etc

View 2 Replies


ADVERTISEMENT

JQuery :: Use One Input Text Field To Drive Two Hidden Input Text Fields?

Jul 16, 2011

I have a problem created by my complete [rookie] status – only second time venturing into jQuery. I created a simple shopping cart using php and the PayPal buttons (1: buy now, 2: add to cart). The php back end does it great, it generates the table and the buttons and everything works just like it’s supposed to; Except, I forgot to add sizes. So I found out what I need to add, and I realize that the way the buttons work, I will have two different text boxes for size. Not very visually appealing, and since I’m not submitting this to the server before it goes to PayPal to pay, I cannot modify it with php the way I normally would. jQuery / javascript are my only hope of making this work. What I want to do:Have a single textbox where [size] is entered by the user.

Copy the value from the [correct] text box to the Value=”” section of the now hidden field in the PayPal form That way, no matter whether they [BUY NOW] or [ADD to CART] the right size is submitted to the PayPal shopping cart. This is the actual PayPal code that I’m trying to change

<table>
<tr>
<td>
<input type="hidden" name="on1" value="Size" maxlength="200">Size</td>

[code].....

I got this far, and then decided to find how to insert the "enteredVALUE" into the right place in the input text field (what I called output) and I've not been able to figure out how to stuff it in there.

View 3 Replies View Related

JQuery :: Highlight A Radio Field And Then Pop Up An Input Text Box Field?

May 13, 2010

I am trying to make some dynamic effect to a HTML page using JQuery.<br/> 1.<br/> When the user clicks a Radio field, the field will be highlighted.<br/> 2.<br/> When the user clicks the Radio 'Man', <br/>a Input text box will be provided immeditely just below it.

Here is my simple HTML page, but I don't know how to do with the JQuery part:

<Table>
<TR>
<TD>Gender</TD>
<TD>

[Code]....

View 1 Replies View Related

Text Field To Drop List

May 10, 2007

I'm looking for have a text field when a user clicks in the text field a drop list of values appears for the user selects from and populates the text box they clicked. Is there anywhere I can find this or something similar?

View 1 Replies View Related

Force Insert Text Into Form Text Input Field Onload

Apr 13, 2010

Have a small problem with a cms whereby when i try to insert default text into an input text field using the "value" attribute it gets deleted. I was thinking to force insert the text in there when the page load with javascript but not sure exactly how...

<p><input name="vericode" id="vericode" value="This text doesn't display!!" type="text" onclick="value=''"/></p>

View 7 Replies View Related

Updating A Text Field And Drop Down At Same Time?

Jul 17, 2009

I have a DB query that returns CustomerID, CustomerName, CustomerContact, CustomerSalesID. This Query populates a dropdown.

I need to have the Customer Contact applied to a text field and the customer Sales ID used to select the SalesRep from a different drop down when you select a customer.

Not too hard I'd think. I don't think I need to go as fancy as AJAX since I've already called the query when the page loads, that data is already there.

View 9 Replies View Related

Populate Text Field From Drop Down List

May 1, 2009

how to create a somewhat simple form. The form will have text fields for 'Name', 'Phone', etc. What I want is to have a drop down list, which has different insurances to choose from (i.e. Medical Insurance, Dental Insurance, Senior products), and say when I choose 'Senior Products', new text fields pop up within the form to add their 'Address' and click a checkbox that states they authorize to be contacted. These new fields aren't visible unless they choose 'Senior Products' from the drop down list.

View 6 Replies View Related

Dynamically Populate Text Field From Drop Down Box

Jun 20, 2011

The below script is working fine on IE but notin Mozilla

<script type="text/javascript">
window.onload=function() {
if (document.getElementById) {
document.getElementById("country").onchange=function() { switchme(this); }
}
}
[Code]...

View 4 Replies View Related

Dynamic Drop Down List Based On Text Field Value

Nov 25, 2009

I have a form that has a pretty complicated combo box - a user starts typing text, it queries a database for matches, and displays the results to the user. The user can then select the match they desire and it has a value id, which I am currently sending to a hidden field in the form. So, for example: user starts typing in a movie name, Seven - it returns Seven and user selects it. The form submits the id of the movie seven (say 12) to a hidden field.

Where I am stumped: Once a user selects a movie title, I have another drop down select box that is to display the available formats of the movie by querying my database based on the product id (12) and returning the available formats in the list:

DVD
BLUERAY
VHS

I am pretty good at programming, but I cannot figure this out - how to make the select box fire and return results once the value for the textbox has been captured.

View 1 Replies View Related

Drop Down Menu Selection Writes To Text Field

May 13, 2003

I was wondering if anyone can point me to an example where:

You select an option from a drop down list Based on what you select, if writes information to 1 or more text fields.

View 3 Replies View Related

Pass Variable From Drop Down Option Field To Text Fields

Jul 23, 2005

Here is the working script if anyone is interested.

I was missing the else if.

<script language="JavaScript">
<!--

function Trip_Time(Traffic_Results) {
if (document.Traffic_Results.CIP_Diff.value == "point1") {
document.Traffic_Results.display_time.value = "2:20";
document.Traffic_Results.display_time2.value = "4:30";}

else if (document.Traffic_Results.CIP_Diff.value == "point2") {
document.Traffic_Results.display_time.value = "8:20";
document.Traffic_Results.display_time2.value = "11:30";}

else if (document.Traffic_Results.CIP_Diff.value == "point3") {
document.Traffic_Results.display_time.value = "1:20";
document.Traffic_Results.display_time2.value = "6:30";}


else {
document.Traffic_Results.display_time.value = "0:00";

document.Traffic_Results.display_time2.value = "0:00";


}
}

// -->
</SCRIPT>
</HEAD>

<BODY BGCOLOR="white">

<form name="Traffic_Results">


<select name="CIP_Diff" onChange="Trip_Time()">
<option value="" selected>Choose from this list</option>
<option value="point1">Point 1</option>
<option value="point2">Point 2</option>
<option value="point2">Point 3</option>
</select>&nbsp;&nbsp;&nbsp; <font size="-1">Starting Location</font>
<BR>

Time at Location <input type=text name="reported_time" size=5 value=""><br>
ETA 1 <input type=text name="display_time" size=5 value="0:00"><br>
ETA 2 <input type=text name="display_time2" size=5 value="0:00">

View 2 Replies View Related

JQuery :: Use Text In Input Text Field

Oct 27, 2010

I'm trying to capture and use the text in a text field after a send button is clicked this is what I have.

[Code]....

View 2 Replies View Related

JQuery :: Disable Drag And Drop To / From Input Text?

Jun 14, 2011

How to disable drag and drop to/from an input text?

View 1 Replies View Related

Show/Hide Text And Form Field Based On Drop Down Selection

Jul 20, 2005

I'm trying to show/hide a simple piece of text and a text field on a
form based on what choice is made from a drop down box.

<select name="dropdown" size="1">
<option selected value="">Please make a selection</option>
<option value="1">Choice 1</option>
<option value="2">Choice 2</option>
<option value="3">Choice 3</option>
<option value="4">Other</option>
</select>

i.e. if Choice 2 is selected I'd like to display a new <tr> with the
following:

<tr>
<td>New text field:</td>
<td><input name="newField" type="text size="20"></td>
</tr>

if any other choices are made, I don't want to display anything.
I've tried several onchange() functions but can't achieve what I'm
looking for.

View 6 Replies View Related

Add Values Of Drop Down Menu Options And Output A Total To A Text Field

Apr 29, 2009

I have two drop down menus. I want two values to be added based on what they picked and then outputted to a text field to show a grand total in a dollar amount.

This is what I have:

Code:

Code:

Note I haven't did any type of code for the 2nd drop down menu just in case anybody says I don't see anything. I was working on trying to get started in the right direction.

View 1 Replies View Related

Changing A Bit Of Text Via Field Input?

Aug 18, 2009

I'm building a template editor and changing some of the variables.

Part 1.

Only at DEALERNAME. Must present coupon at time of write-up. Cannot be combined with any other offer. 1 coupon per customer per transaction. Expires: 00/00/00.s

I need to be able to fill out two fields to change DEALERNAME and 00/00/00.
I found a way to do this but it required the output to be in a field. I need it the output to look no different than before.


Part 2.

I'm using this to change some text via radio button but I would like an option to select how many details are there is the first place. Say they only want 1 or 2 details and not 3.

Head
<script language="javascript" type="text/javascript">
function detail1a(){
document.getElementById("detail1").innerHTML = "Up to 5 Quarts";
}

[Code].....

View 4 Replies View Related

Hide Help Text In Input Field?

Aug 17, 2009

I have tryid to search for this, but apparently, I cant get the right words for it... What I want is to have an input field (Email) with the word "Email" predefined in it as value, but when a user clicks inside the field, the word disappear and he can write his own email...

View 4 Replies View Related

Invoice Form - User Can Add - Input Field - After Adding A New Input Field - The Content In The Other Fields Is Deleted

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

JQuery :: Match Text That Is In Input Field

Oct 14, 2011

I've been doing a lot of googling and im having touble finding information on how to do the following.I have an input field: $("#my_field")Which contains the following following text: |1||4||9||10|When the user clicks a button i want to check to if : |4| is in $("#my_field").val()I can find examples on how to check all input fields, however i only want to check the one.

View 3 Replies View Related

JQuery :: Input Text Field Validation?

Mar 23, 2011

i know its for email validation, but how the line 1 works?and also if JQuery has this function?

if (!/^[A-Za-z0-9_.-]+@([A-Za-z0-9-]+.)+[A-Za-z0-9]{2,4}$/.test(
document.forms[0]["email"].value)) {
alert("Please enter a valid e-mail address.");

[code]...

View 2 Replies View Related

Select Radiobox On Text Field Input?

Sep 25, 2009

I have an existing form with radio buttons and a text input field:

<input type="radio" name="recurringEnd" value="yes"> End after <input type="text" name="numberOccurrences" size="1"> occurrences
<input type="radio" name="recurringEnd" value="date"> End on <input type="text" name="endDate" size="8">

My client now wants it setup so that if the text field is filled in, the radiobox is automatically selected.

View 3 Replies View Related

Change Text To Input Field On Click?

Aug 13, 2007

When a string of text is doubleclicked, the text changes into an input field, (dropdown, text, etc), and when the user presses enter or clicks out of the field, whatever they chose/typed in replaces the original string of text.

View 1 Replies View Related

Run A Function When Text Is Typed In An Input Field?

Jul 15, 2011

I want to run a function when text is typed into an input field. So every time 1 character is put in it will process a function. However I do not know how to accomplish this. I tried the onchange attributed but that seems to only work when you unselect the input field.

how this might be accomplished? I'm also comfortable with jQuery if you think that's a better option.

View 2 Replies View Related

Ajax :: Get Input Field Value From Response Text?

Feb 26, 2009

Can we get the input field value from response text .

Like i have code

contractArchiveConnectionSuccess = function(responseObject) {
alert(responseObject.responseText);
}

i want to show alert here if that input field value exist.but problem is that response text has other data as well so how i differentiate to alert .

View 3 Replies View Related

Changing An Input Field To A Text Area?

Feb 5, 2010

I work within an application so I can not just code this field as a textarea. I have to work with what the applications renders.

I am trying to use javascript to change an input field to a text area.

I am having trouble just getting started on this. Doesn't anyone know if this is even possible?

View 4 Replies View Related

Input Field With Text That Disappears When Clicked?

May 13, 2010

I got:

Quote:
<script type="text/javascript">
function emptyTitle() {
if (document.getElementById('title').value=='Enter the Title for Your Post') {[code]......

However, the text that appears is black. How do I style it to make it gray and smaller?

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved