Dropdown List - Contact Info To Show On The Page ?

Jul 17, 2011

Here is how the code works: (its like a phone directory)

-User first selects the dept.

-Once selected, a second drop down populates with the names of each person in that department.

-I want the contact info to show on the page once they select this last step.I need for when the user selects this second options for a link to open inside a iFrame inside of the same html page.Here is the code for the HTML doc:

HTML Code:
<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080" alink="#ff0000" onLoad="fillCategory();">
<FORM name="drop_list" action="yourpage.php" method="POST" >
<SELECT NAME="Department" onChange="SelectSubCat();" >[code]......

View 1 Replies


ADVERTISEMENT

JQuery :: Show / Hide Textfield After Changing In Dropdown List

Jul 9, 2009

I can't figure out why it dosen't work. I'd like to show/hide a <p> block depending on the value selected in the dropdown list:

$(document).ready(function(){
$('#report_rep_type').change(function(){
$('#report_rep_type').change(function(){
if($(this).text()!= 'Contigency Liabilities/Others')
$('#someElement').hide();
else
$('#someElement').show();
});
});
});

HTML code:
<form action="my action>
<fieldset>
<legend>Report details</legend>
<p>
<label for="report_rep_type">Report type</label><br />
<select id="report_rep_type" name="report[rep_type]"><option value="">Please select</option>
<option value="Scientific & Technical">Scientific & Technical</option>
<option value="Financial">Financial</option> .....
<p>
<button class="button " type="submit"><img alt="Tick" src="/images/silk/icons/tick.png?1245400388" /> Create</button>
</p>
</form>

View 7 Replies View Related

Code To Display Script Dropdown List To Show By Default Selected Value?

Jan 28, 2011

Can someone tell me the code to display dropdown box showing a default value as selected which can vary as per the user�s condition using script..i,e by enclosing in document.write..
Now i need to print a for loop counter variable's value as the default selected option if a condition satisfies as shown below..code...

View 1 Replies View Related

Script Dropdown List To Show Current Date As Default Selected Value?

Jan 29, 2011

what can be the reasons for the same code which works perfectly in notepad to not show its result in a jsp application done using eclipse??anything to do with settings?

I am not able to display the current date as default in dd/mm/yyyy format in drop down menu..only dd and yyyy apears but month isnt apearing as default..

can u suggest alternative logic and its code to implement the same??

View 1 Replies View Related

Grabbing Msn Contact List ?

Mar 15, 2010

Is there a way for a website to grab a users msn/hotmail contact list and send email to those users if the user wants to? Like an invite to a web page. Is this hard to achieve?

View 2 Replies View Related

Disable A Dropdown List Based On Selection In Another Dropdown List?

Apr 20, 2011

I have two dropdown lists with the second one being dependent on the selection in the first.

Options in list 1: 1,3 or 4

List two should be enabled when 3 or 4 is selected in list 1.

So far so good, managed to get it to work with only one set of lists, but I actually have 18 of those sets in this form:

<select name="fw[$i]" id="fw[$i]">
<option value="1">FWH</option>
<option value="3">links</option>
<option value="4">rechts</option>

[Code]....

I'm not that adept in javascript programming, more like a trial and error guy, how has hit the wall with this problem.

View 20 Replies View Related

Reload Dropdown List Without Refreshing Page?

Dec 1, 2011

How can I execute this:From the dropdown list build up from mysql database (say a list of fruits).I select "Add New Fruit". This triggers it to either have a modal form to add new fruit or a table form.Once submitted, Select dropdown list RELOADS including the newly added data (fruit) without reloading the whole page which contains other form control such as textbox.

View 1 Replies View Related

Disabling Dropdown List On Page Load?

Mar 28, 2009

Is it possible for javascript to disable a dropdown menu on pageload? I have a select menu that has three options, 1, 2, and 3. So on pageload if option 2 is selected then I want the rest of the dropdowns disabled?

View 2 Replies View Related

Reload A Html Page OnChange Event Of Dropdown List?

Nov 25, 2009

I want to reload an html page onChange event of dropdown list and retain the old values filled in the page.

View 1 Replies View Related

Create A Page That Dropdown Menu Populated With A List Of Images?

Sep 24, 2010

I would like to create a page that has a dropdown menu populated with a list of images. When someone selects an image, the image and a URL to a webpage will display (screenshot below). Each image will have a different URL. How do I accomplish this?

View 9 Replies View Related

Case Construct - Make A Contact List - Validating Select Lists ?

Nov 3, 2010

I've started a course on web design and I'm busy with a assignment on Javascript. I need to make a contact list which I'm nearly done with but I'm stuck with one bit, validating select lists, I want to do it using a case construct but I'm not sure how cause mine doesn't want to work.

View 2 Replies View Related

How To Show Error Massage (not Alert) In Contact Form

Feb 27, 2009

I hav find an paypal donate form like this: [URL]. The error massage will show when form is empty. Can that effect used in contact form ???

View 1 Replies View Related

Display Info When Choose From A Dropdown

Dec 28, 2009

I created the following javascript to display info when you choose from a dropdown:

When you choose the second one and then the third one the second choice does not disappear and it displays both. How can i refresh in between each one so that is displays only one?

View 15 Replies View Related

Ajax :: Dropdown Menu Pulling Info From MYSQL Database?

Jun 20, 2009

I need to create three dropdown boxes (box 1:colour, box 2: price, box 3:brand) and when the user presses "GO" they are returned with the correct information, pulled from corresponding fields in my MYSQL database.

For example, colour: silver, price £100-£200, brand:samsung...should return 5 items on the page. I do not need the dropdown boxes to populate depending on ther previous selection - they are static, so to speak. If possible, I would like the information to be retuned to my page without the URL changing, which leads me to think I will need to be ausing ajax....?

View 2 Replies View Related

Update A Dropdown List Based On The Selection Of A Previous List

Aug 16, 2010

i am writing a script that will update a dropdown list based on the selection of a previous list. the script is run by a PHP script, so instead of posting the PHP, i will post an example client-side script. the hierachy is: category, sub category, brand (but sometimes there exists no sub category and the PHP script queries and adds brands instead) everything works correctly, except for one major issue: you can not change the selection of the third (brand) box this could be an easy fix for some coders, but i am not experienced in javascript and could really use some help. here is an example script, sorry it is so long

[Code]...

View 4 Replies View Related

PHP Drop Down List Selection Populates Second Dropdown List Or Text Box?

Jul 13, 2011

I have been struggling on a bit of code for a while now. I need to populate a second drop down list (Region) based upon the selection of the first (County).I have found a piece of code that works on its own and have adapted to suit my needs - see below. However, when I drop it into my main page the javascript is not working. It's because of the formObject but I just don't know enough to resolve this! Furthermore, I need the textboxes the user has already completed in the form to retain their value once the javascript kicks in as the completed form will submit to a database.This piece of code is working well . . . .

<?php

$link = mysql_connect('myhost', 'myusername', 'mypassword') or die('Could not connect: ' . mysql_error());
mysql_select_db('mydatabase') or die('Could not select database');[code]......

View 2 Replies View Related

Jukebox - Replay List And - Create Non Dropdown List ?

Sep 1, 2010

I am trying to construct a Jukebox for my website. I have spent considerable time all over the WEB and at this forum which addressed the issue in a 50 page thread. Please see: [url]

I got a lot of ideas from this thread but still cannot figure a way to do the following within the Jukebox. These are my main two questions for everything below:

1.How can I have the Jukebox cycle through all tunes and then start over from the beginning?

2.How can I allow the user to select a tune from a list but not a drop down list, have the Jukebox start from the users selection and then play all songs to the end. Then as in #1, start over from the beginning?

Per this thread I came away with basically two ways to assemble the jukebox. One uses links in a drop down list which the user can choose from. The other is to use an .m3u playlist. The user can only select a playlist from the drop down.

Below, I have included the code for each Jukebox. To see the Jukeboxes in action please go to my website where I have posted some test pages exhibiting the jukeboxes that I am referring to.

The following is the Jukebox which utilizes an .m3u playlist. If I end up using this idea I would like the tunes in the .m3u playlist to be displayed and allow the user to be able to choose a tune in the list. Then have the list play to the end of all tunes in the list. Then start over from the beginning of the list. After this code is the .m3u playlist.

Go to url removed and click on the link that says:

Jukebox utilizing an .m3u playlist:

Here is the .m3u playlist for the above code:

The following code is for the Jukebox that has a list of links in a dropdown list. If I go with this idea, I would like for the list not to be a dropdown list but just a list of tunes. The user should be able to click on any tune in the list and the player should start from that point, play all the remaining tunes in the list and then start from the beginning.

Go to url removed and click on the link that says:

Another idea I found on the WEB also uses an .m3u playlist. The good thing about it is that it lists all the tunes in the playlist which the user can then select from. This jukebox calls up an entire Windows Media Player. If I was to use this idea I would like to be able to disable the left side of the player where the user has options such as burning to CD, Media Guide, Radio Tuner etc¦

Go to url removed and click on the link that says:

View 1 Replies View Related

Create A Stacked List Of Thumbnails, Each One Expanding With More Info?

Oct 13, 2005

As the subject suggests, I'm interested in having a "picture/information" page on my site. I want a simple list of 5 to 10 thumbnailed pictures when the page loads in which each one is stacked on the other. I would like each to expand with a bigger picture and text information about the picture via user interaction. I have two options - I don't care which one I use:

#1. Once loaded, I would like each thumbnailed picture, once clicked, to expand and show a bigger picture and text information about the picture. I wouldn't mind using this option but this option is more of a hassle and causes more clutter/less interaction.

#2. As I thought about this, I think a better option would be to expand to a bigger picture and text information using a mouse rollover instead of a click so that, once a user moves the mouse back off the bigger picture and information, it reduces back to the thumnail. This would allow for a better organized and better looking page. This effect, I would assume, is almost like text links changing color using mouse rollover.

* Which option would you suggest using?

* Is option #2 even possible?

* I would prefer using option #2.

* I've experimented with this code (however, it used option #1, not #2, and it requires clicking an entirely different button to do so): Code:

View 6 Replies View Related

Turn On/off My Phone Numbe On Contact Page?

Jul 30, 2011

I don't know which language this could be done in. Javascript?I want my contact form to be such that I can login and turn off whether it displays my phone number. If I'm available to answer the phone, it would be set to "On," otherwise, "Off." This is similar to how companies use their "click here to chat" thingy.Also, it would nice if I could have a choice of phone numbers. If I am not available for calls but a co-worker is, I could direct calls to him. When both of us are unavailable, we could set it to "Off."

View 3 Replies View Related

JQuery :: When Clicks On An Image - Visitor Is Taken To Contact Us Page

Jun 8, 2011

We have been trying to set up a procedure on our website so that the following happens:

When someone clicks on an image, the visitor is taken to our Contact Us page, the title tag is inserted into the Subject and they can complete the rest fo the form and submit.

We have about 40 pages of images, all of which have the ALT and TITLE tags completed. Each image has a description paragraph, and all pages are made using HTML and CSS.

We've seen several websites, although of course now we can't find them, that something similar occurs. Seems there was a jquery script that did this type of thing, but it would only work on the same web page and we want it to go froma category page (about 40 different image category pages right now) to the Contact Us page.

It is important that the name related to the image shows in the email form so we know what image they are referring to.

With our limited knowledge of javascript, we've not been able to insert the TITLE or ALT tag info into the form Subject so that it shows on the emailgoing to us. We've attempted onclick which now moves the visitor to our Contact page. We also can use the <a href as well.

View 1 Replies View Related

Ajax :: Create A Sender Form For A Contact Page?

Jun 23, 2009

I want to create an AJAX sender form for a contact page.

My standard php mail() form does not work on the server I have a site hosted on so I am going to send the request to the form on another server.

What I want to do is use AJAX to send the data in each section of a form to another URL (external) but I don't want to go to another page.

So I really want the AJAX form to send / post the data, get a tell back signal to say if it worked or not and then dependant on that I would like to load a success of failure page.

View 1 Replies View Related

Upon Submiting Form Data Show Pic Related To Info Previous?

Jan 30, 2009

So I have an order form which gets all validated with fields, checkboxes, radiobuttons and so on...after submiting I would like to show pictures related to what was order/picked...as of right now when I click sumbit it just shows no "error message/validation errors" since the information is just correctly entered but I would now like to go to another page? clear current page and basically show images...say my radiobuttons was car selection with options bmw, audi, lexus ect...now after submiting a new page loads ontop? showing a picture of the brand selected? how would I go abouts doing this?

View 2 Replies View Related

On Dropdown Select - Show Dropdown

Feb 2, 2009

Ive searched this forum for a simple solution to this. I want have a drop down of countries. Only if USA is selected, it shows states, otherwise it is hidden. I have a function which is 'trying' to write the state dropdown to an empty span.

Code HTML4Strict:
<script>
function test(){
document.usstate.write("<select name='state'><option value='' selected>--</option><option value='New Jersey'>New Jersey</option><option value='New York'>New York</option><option value='California'>California</option></select>");
[Code]....

View 16 Replies View Related

If User Types In The Correct Info Into An Input Field - Then Show A Submit Button

Jul 2, 2009

I'd like to create a quick and dirty validation method for a form. It's not meant to be very secure.

The way I picture it working is this - there is an input field that asks for a password. If the user types in the password correctly, the "submit" div tag will change from "none" to "block". , which will display the submit button. I just am not familiar with JS enough to know if that's possible.

Here's what I'm starting with:

Code:

View 6 Replies View Related

JQuery :: When I Choose Manufacturer, The Item List Show Only These Items Asociated With Choosen Manufacturer Without Page Refresh?

Nov 26, 2011

what i'm having is to dropdownlists with data from mysql (PHP). One is with manufacturer and other is items. Both data is from the same table, just different fields. I need, when I choose manufacturer, the item list show only these items asociated with choosen manufacturer without page refresh

View 3 Replies View Related

JQuery :: Dropdown Menu Selection Dynamically Alters Selects Of Other Dropdown Menus On Same Page?

Jul 24, 2010

I have a project where I need a selection of one dropdown menu may affect the select of multiple other dropdown menus on the same page.First, a table is generated, and within each row, it contains a dropdown menu. Assume: Rows A, B, C, etc..., and Dropdown selection: 1, 2, & 3If dropdown in Row A selects 2, then I want the selection of dropdowns in rows B & C to dynamically change to 2.And if in Row C user selects 3, then the selection in dropdowns in rows A & B should dynamically change to 3.

View 1 Replies View Related







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