dropdown

Jquery dropdown remove class after disappears

I have this code for a dropdown and I need to remove the class 'hovered' on '#products' after the menu slides up and has disappeared. How do I do this? Currently it disappears straight away onmouseout Thanksfor any help in resolving this! :-) $(function() { var divTop = 168; $('#products div ul').css({'margin-top': '-' + divT...

ComboBox "New Option" Option w/ Popup Input to add option

I'm learning so be nice. I'm developing a web app for a product management system. My office purchase wholesale from multiple vendors and direct. My web app needs to accommodated basic "new vendor" creation within a product insert/update form. Is there a simple way to have an option in my combo box "New Vendor" that opens an input bo...

css dropdown menu appears at the first tab

I am staging my ongoing work here- http://www.22shrutiharmonium.com/version2/index.html Here, css dropdown menu appears at different menu tabs (and functions accurately as intended). However, once inside the "blog" section, notice the dropdown menu unnecessarily also appearing near the first menu tab, no matter where we hover the mouse ...

JQuery dropdown menu using slideup and slidedown on hover is jumpy

Hi, I've made a very simple dropdown menu using jQuery slideup and slidedown for the functions - but it gets very jumpy (I'm using Firefox 3.6.8) if the mouse is moved to quickly over it, or if the mouse is held on one of the submenu items. I've made a working example at the following link: http://jsfiddle.net/jUraw/19/ Without the ...

ASP.NET MVC combo dropdown box

Hi, Is it possible to create a dropdown box in ASP.NET MVC, that has a checkbox alongside each item in the dropdown list? I know it sounds simple, in webforms or using telerik this would be pretty simple, but I can't figure how I can implement the same thing in basic HTML. Thanks ...

jQuery Dropdown Menu Question

Having some issues with my dropdown menu. Code here: http://jsfiddle.net/xY2p6/1/ Something simple I'm just not getting, but as you can see it's not functioning correctly. I'm not sure how to link the hiding of the dropdown to when the user hovers off of the menu link, rather than the actual dropdown. Any ideas? ...

a component in windows live messenger in flex

hi everyone, in windows live messenges the status setting component tht is an icon, label and a dropdown arrow. on rollover it gives u border around the component, how to implement the same in air application using flex. i got this link. http://msdn.microsoft.com/en-us/library/dd570146.aspx but how to implement it in flex? thanks in adva...

dynamic html forms radio buttons

I am working on a dynamic form. The form has 3 radio buttons. when you click on radio button 1, a drop down populates. when you click on radio button 2, a drop down populates. etc after the user has clicked on the radio button on part 1, there is another radio button that asks the user if they want another try. eg. another radio button...

EXCEL - dropdown and fill cells

Good night. I'm having some troubles to get what i need done. I have some cells in a sheet that needs to be filled every day, manually. I have also a dropdown with all the months, and another one with the days. Is it possible to save data in specific cells for the selected dropdown values? Something like for each day mantain differe...

MVC DropDown Tree select?

Hi! Im looking for a DropDown Tree Select. I have looked at this Tree control, but im not sure how to combind this with a dropdown button where the selected values are shown in the button when not expanded? BestRegards SowJim Edit : Dropdown tree looks somthing like this : ...

Jquery Disable enable button, dropdown selections

I have a dropdown menu and I want to disable/enable a button on my page when a certain value is selected. It works in All browsers but IE7 and below. Work around???? Code: <script type="text/javascript"> $(document).ready(function() { //Start Buttons $(".nextbutton").button({ disabled: true }); (".nextbutton").click(fu...

During jQuery Animation, top level UL element disappears

I have a nested set of unordered lists that I'm using for a dropdown menu structure: UL > LI > DIV > UL > LI * n > A I'm using jQuery to animate the dropdown/display of the div and child ul: jQuery('ul.top-ul li.top-li').hover(function() { jQuery(this).animate({height:"150px"},200); jQuery(this).find('div').animate...

jQuery language switcher?

Is there a language switcher plugin for jQuery? It just should be a dropdown menu with languages and their flags. When you click on a language, it should add a ?lang=xx to the current URL. I know it's simple to code, but then I have to search flag icons, and I'm lazy :) ...

javascript get value from dropdown

Hi, I have a php script with an array which loops through months and displays them in a drop down. I want to get the selected value from the drop down using javascript. function month_list() { $months = Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); ...

CSS drop down menu - stack order not right?

Our test server is here: http://208.43.52.30/event/list See on the top right the box that says "Organizers" .. For some reason I can't get the drop down to come on the top layer ... I've tried changing positioning, I've tried changing z-index, but no luck .. Any ideas? ...

Jquery Hide/show using dropdown options not working IE or CHROME

I have a mutliple drop down menus that I am using to hide/show rows in my table. Example: <select name="kp1_action" class="longboxsmall"> <option class="hidenextrow" value="">Button Disabled</option> <option class="showtransferoptions" value="transfercall">Transfer Call + Log Keypress to Reports</option> <option class="s...

Force .change() function to run - jQuery

I have a .change() function set for a dropdown menu with an ID of #country. When the page loads, I'm trying to set the dropdown menu to "United States" and run the .change() function: $('#country').change(function () { resetDisclosure(); var countryCode = $(this).val(); var countryName = $('#country option:selected').text()...

Trying to access the options of a dropdown box using jQuery/javascript, but it's saying that .options is undefined?

I'm creating a dropdown box dynamically in jQuery by appending html as follows: .append("<br><SELECT NAME='Month_list' class='month_selection'</SELECT>"); It gets created fine, but I'm trying to dynamically add options to it using the following code: $('.month_selection:last').options.add(new Option(month_array[index])); but I'm g...

Replacing input fields from select choices (dropdown menu) with javascript

Three things: select box 1, input box, select box 2. Based on the selections in select box 1 (drop down list 1), I want either input box to be visible or select box 2 to be visible, but not both. Any help would be great :) I am populating the options in select box 2 based on the choice in select box 1, but sometimes the user's choice ...

html - controlling how many options show in a select element

So I have a drop down (select) element. The problem is that if there is a long list in it, then it "drops" upwards instead of downwards. Is there a way to say that it should scroll rather than show all of them at once? I know there's "size" but that's how many are visible at once (I only want one visible, like normal) Or is the reason...