Fill Select Menu - Works On IE6 Not NS6

Mar 6, 2002

I have this tiny little javascript:

function buildselect() {
parent.center.dpreply.drop.options[0] = new Option('- - - Categories - - -', '');
parent.center.dpreply.drop.options[1] = new Option('asd', Ƈ');
parent.center.dpreply.drop.options[2] = new Option('testing 2', ƈ');
}

which is in one frame and I call it from another frame to fill a select menu using:

window.top.topbar2.buildselect();

In IE6 this works fine, in NS6 nothing is displayed. What am I doing wrong?

View 8 Replies


ADVERTISEMENT

OnClick Works For INPUT - Not SELECT Menu

Aug 31, 2009

The following code works for Radio buttons. If I select 'No', the text field 'no1' is displayed. However, I'd like to set it up so if they select 'Permanent' in the dropdown then the 'no1' is displayed.

[Code]....

View 4 Replies View Related

SELECT OnChange Auto Fill Other SELECT Boxes

Jul 25, 2002

I searched here and some other places on the net but cant find anything that suits my needs. I have a SELECT box with 3 values Code:

<form name="form1">
<select name="length">
<option name="length" value="none">--Select for All--</option>
<option name="length" value="5">--5 Days--</option>
<option name="length" value="7">--7 Days--</option>
<option name="length" value="10">--10 Days--</option>
</select>
</form>

OnChange, I want to invoke a function that auto populates the rest of the SELECT fields in the form. The select boxes will vary in quantity as the page is dynamic, but the values are always the same (like the code above).

Does this make sense?

View 9 Replies View Related

How To Fill A Drop-down Menu

May 27, 2010

i have written the following code in order to fill a drop-down menu with the "alt" property of images. My problem is that i want my menu be able to hold the old values. Now the new values replaces old.

Code:
function GetImages()
{

[code]....

View 3 Replies View Related

Fill Two Fields From One Select Field?

Jun 24, 2011

I have a PHP form which has an select field (i.e. drop-options) where the different options are populated from a MySQL database as follows:

<select size="1" id="category" name="category">
<option value="">Select from drop-list:</option>
<?php
$sql = "SELECT * FROM `DB1`

[code]....

Now, the issue I have is that I also have another input field (possibly hidden) in this form which is called 'category_id', and what I want it to do is to automatically populate when the user selects the relevant 'category' from the select field above.

View 11 Replies View Related

Select Box Onclick Fill A Textbox?

Mar 30, 2010

I am trying to

1. display a select box

2. onclick (extract the value and the text from the clicked item) in the select box and fill 2 text boxes.

<html>
<script type="text/javascript">
function disp_text()

[code]...

View 4 Replies View Related

Fill A Text Box After Select One Item From It?

Aug 11, 2010

How can i fill a text box after select one item from a select box ? if i select below 4610R-04490101 the text box must have the 490 team value [code]...

View 3 Replies View Related

Fill Textfield On Select From Drop Down List

Dec 24, 2010

I know very little javascript, I am more familiar with php. I am working with javascript code, php/mysql backend and smarty templates. I am trying to get the textfield box to update with a variable from the database based on the selection from the drop down field. My dynamic drop down selection works fine, it is pulling the data from the database (example:$item[i].PARTS_RATE_ID}) just fine. But I want the textfield ('parts_price['+iteration+']') to dynamically show the $item[i].PARTS_RATE_COST from the database (in the parts section), associated with the $item array from the "parts description".

[Code]..

View 2 Replies View Related

JQuery :: Autocomplete - Using Select Event To Fill Hidden Field

Jul 15, 2010

I'm using jquery autocomplete to fill a textbox with some text but I need to get the ID of the item too. For this purpose I thought to use the on select event to fill an hidden field the problem is that the on select event is never fired.

This is my code
$(function() {
$('input#<%= tblNewInsert.FindControl("nazioni").ClientID %>').autocomplete({
source: function(request, response) {
$.ajax({
url: "offerte.aspx/fillJson",
data: "{ 'descrizione': '" + request.term + "', 'tabella': 'nazioni', 'campo': 'paese' }",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
select: function(event, ui) { alert("never fired"},
success: function(data) {
response($.map(data.d, function(item) {
return {
value: item.descrizione
}}))},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}});},
minLength: 1
});});

View 1 Replies View Related

Clickable Calendar - Xin's Popup - Dates To Fill The Month Select Field

Mar 3, 2009

I'm trying to get Xin's Popup Calendar -- [url]-- to work with the following form:

I need the dates to fill the month select field, the year select field, and the date text field but I cannot understand how to do this, I'm very new at javascript.

View 1 Replies View Related

JQuery :: Select Menu Shows 'undefined' When Open Menu?

Jan 13, 2011

I am trying to use the Jquery selecmenu to skin dropdowns.There are extra UL LI getting formed with data "undefined" so dropdown is showing undefined in end.

View 1 Replies View Related

Expected '' Error - Select Menu 'Customer' Which Triggers A 3 JS Functions - To Populate 2 Extra Select Menus

Aug 18, 2010

I'm having problems with a Javascript 'Lookup' function.

Basically, I have a select menu 'Customer' which triggers a 3 JS functions, to populate 2 extra select menus.

Using IE Developer Tools, during debugging, I get this error: Expected ';' Error

This relates to either: eval(ajax_CustContact[index].response); OR eval(ajax_CostCentreContact[index].response); (it's a bit random, as sometimes it works, sometimes it doesn't)

I have tried changing the 'custid' to 'custname' to check whether it was an integer causing the problem, but had the same problem.

View 4 Replies View Related

Ajax :: Create A Multiple Select Menu Where Can Select Several Different Items

Oct 10, 2010

We have a list of items that each has a different quantity available. So I am going to create a multiple select menu, where they can select several different items. So, how can I make it that when they leave the field it sends all the different ones to the ajax program to build all the appropriate quantity forms?

[Code]...

View 1 Replies View Related

Jquery :: Menu Works In IE9 Nothing In FF / What To Do?

Sep 29, 2010

I am completely lost here. My page is code...

The first checkbox should spawn a menu and then the "breast" option could spawn another. It works flawless in IE9. But in FF 3.6 the first checkbox simply does nothing. In Chrome, it spawns the menu, but strangely the checkboxes in the next menu are not clickable.

View 3 Replies View Related

DHTML Menu That Works In Opera

Mar 31, 2002

Does anybody here know of a DHTML drop down menu that works in opera?

View 2 Replies View Related

Menu Works Locally But Not When Uploaded To Server.

Jul 23, 2005

I have created a site with menu, it is working fine locally but when i
upload it on the server it dosen't work. When I click on submenu under
"Company" or "Products",It will show the actual url in the address bar
but it gives a error "405 - resource not allowed". Kindly check and
let me know the solution for this. If you know any other simple script
similar to this let me know.

View 2 Replies View Related

Menu Popup Script Only Works In Chrome?

Sep 22, 2010

I have this script that is supposed to show a popup balloon when you mouseover a link. It works great in Chrome but doesn't work in IE.

index.html:
<head>
<link rel="stylesheet" href="help.css" type="text/css">
</head>

[Code].....

View 2 Replies View Related

JQuery :: Select By ID Sometimes Works, Sometimes Doesn't?

Feb 20, 2010

I'm pretty new at this - been using JQuery about three weeks full-time with good success. But. Some of the elements in my HTML can be selected by their ID's, using the $("#some-id") syntax, and some can't (the selector returns an empty set). In the debugger (Visual Studio) at a break point in the Javascript, I copy the ID value directly out of the html into theimmediate window and run something like to print out the length property of the wrapped set: ?$("#unfindable").length and get zero. I can do the same thing on other ID's and JQuery finds them as I would expect, and Ican't see the difference between the ones that JQuery findsand the ones it doesn't: for instance, they might both be divs. These aren't form input fields - for those I use something like $(":input[id='some-id']") and it works consistently. I don't do anything fancy like changing ID's at runtime - this is all simple static HTML, so I know that the element is there in the DOM and that it has the ID I'm looking for.

View 4 Replies View Related

JQuery :: Expandable Menu Not Working On IE Works Fine In Other?

Mar 16, 2011

need help to modify this code to make it work in IE . other browsers works fine.

<
script src="js/jquery-1.5.1.min.js" type="text/javascript" charset="utf-8"></script>
<

[code]....

View 1 Replies View Related

Select Code Works For Firefox / GC But Not For Opera And IE

Oct 18, 2010

It works fine in Firefox and Google Chrome but not in Opera and Internet Explorer.If you don't have Firefox or Google Chrome,when you click an element, if should be lighter green, rolling out of a clicked element, it should be darker green. The same happens with elements that are not selected, ubt they are gray. But in IE and Opera, when you roll out of a selected element, it is gray.I can't debug it in Opera because I have no debugger there, like Firebug.

View 4 Replies View Related

JQuery :: Menu Works On Sample Html Page, But Not In Asp.net Project?

May 3, 2010

OK, so jquery code works fine on a sample test html page. However, when I try to execute the exact same code in my asp.net project, it does not work. I have included the scripts and the paths are correct so it has nothing to do with that.

$(function(){ $('ul.jd_menu').jdMenu({ onShow: loadMenu //onHideCheck: onHideCheckMenu, //onHide: onHideMenu, //onClick: onClickMenu, //onAnimate: onAnimate }); $('ul.jd_menu_vertical').jdMenu({onShow: loadMenu, onHide: unloadMenu, offset: -1, onAnimate: onAnimate}); });

That is the section of code it gives me an error on, it says " Object doesn't support this property or method"

Also, even before I run the project, I have a warning in my error list box that says: Error updating JScript Intellisense (C:~~~blah blah jquery-1.4.2.min.js

View 7 Replies View Related

JQuery :: IE Using Superfish Menu - Works In All The Browsers Except Internet Explorer 8?

Jun 26, 2010

Im using The Superfish Menu code(http:url....) in a web page and it works in all the browsers except Internet Explorer 8, because it says:t ohelp protect your security, Internet Explorer has restricted this file from showing active content that could access your computer.

View 1 Replies View Related

Picture Viewer Works Fine But The Drop Down Menu Seems To Be In Conflict

Sep 2, 2010

I have been trying to run two Javascripts within the same page. The first is the Drop down menu Javascript, the second is the Picture Viewer (Click an image and it opens) Here is a copy of the webpage (the active version has been modified to reduce confusion for users) [URL] I have tried a noconflict, but it didn't seem to work. As you can see, the Picture viewer works fine, but the drop down menu seems to be in conflict.

View 16 Replies View Related

JQuery :: Why Click Event For Select Option Not Works In IE (8)

Feb 25, 2010

In my form a <select> with options I wrote
$('#select option'). click(function () {
myFunction();
});
Works fine in FF - IE8 works only for
$('#select'). click(function () {
myFunction();
});

But it is not at all the same thing, and myFunction is fired when as soon the select opens. And I want it is fired only when I click on an option (even if it is not a change !) I tried some other manners for the same result. The last one was to write the options as
<options class="opt" value ='x'><option>
and $('.opt').click(function () {
myFunction();
});
Works fine in FF, but not in IE8.

View 8 Replies View Related

How To Set Another Select Menu

Sep 25, 2010

I would like to know how to set another select menu based on what was select by another one example if I select water in the first select box.i would like to be able to select a type of water from the next select box.i have items in the first select box like water , wastewater, petroleum.if i select water in the first one then the second select box should have a list like brackish water,brine,fire protection.

View 9 Replies View Related

Select Menu Pop-up

Nov 1, 2002

I have this select menu

<select name='config'>
<option value='cal' selected='selected'>Choose a server config</option>
<option value='cal'>Official CAL Match</option>
<option value='clanbase'>Clanbase time 20 (FF-ON)</option>
<option value='clanbasemr12'>Clanbase MR12 (FF-ON)</option>
<option value='ogl_Advanced_v2'>OGL CS Advanced Server Config V2.0</option>
<option value='ogl_ff_v2'>OGL CS FF Server Config V2.0</option>
<option value='ogl_v2'>OGL CS Server Config V2.0</option>
<option value='pg'>Official ProvingGrounds Server Config</option>
<option value='Public'>PUBLIC Settings</option>
</select>

and I want to make it so when they make a selection, it pops up a window to tell them a little about what settings that config has.

View 1 Replies View Related







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