Take a look at www.sensenich.com in Opera. I'm not sure if this is specific to my version but Opera seems to do a number on the dropdowns from the top navigation menu.
For some reason the li in the ul .subhead become transparent. Also if you hover over .subhead it immediately disappears.
This behavior only seems to exist in Opera, ot...
Hi,
I've got the following piece of Jquery:
$("#collapse-menu > li > a").click(function() {
$(this).toggleClass("expanded").toggleClass("collapsed").find("+ ul").slideToggle("medium");
});
What it basically does is expands or collapses a menu of nested "lists" which contain dropdowns (simplified example):
<ul id="collapse-menu">...
Hello,
I am creating a simple MySQL query that will be built from the user selecting options from 2 dropdowns.
The issue I am having is that I would like each drop down to default that if they do not actually choose an option, do not filter by that dropdown parameter.
So, if they come in, and simply hit submit without choosing from a ...
A weird problem with a dropdown menu in IE7: http://screenr.com/SNM
The dropdown disappears when the mouse moves to a part that hovers above other layers.
The HTML structure looks like this:
<div class="header">
<ul class="nav>
<li><a href="">item</a>
<ul><li><a href="">sub-item</a></li></ul>
</li>
</ul>
</div><!-- /heade...
if i have a dropdown with the following html:
<select id="myDropdown" name="myDropdown">
<option value="6">Six</option>
<option value="5">Five</option>
<option value="3">Three</option>
<option value="1">One</option>
</select>
how can i have this dropdown change to a specific selected value after i click on a button?
...
Hey Guys,
I have the following 3 urls:
http://www.test.com?a=1
http://www.test.com?a=1&b=3
http://www.test.com?a=1&b=2&c=99
Now in a form i have a drop down menu like so:
<select name="b">
<option value="1">1</option>
...
</select>
Now i want to either add that param to the list of existing params or edit th...
Hi
I've been testing lots of dropdown menus, but I was looking for some specific stuff:
multilevel
crossbrowser
css based (mainly)
if uses javascript, to be jQuery compatible
easy to implement
After discarding some menus, I arrived to Superfish
http://users.tpg.com.au/j_birch/plugins/superfish/
I had to discard it too, because the...
I'm creating a jqgrid with one drop down column. I need the options of the drop down columns to change dynamically so I thought I can catch the beforeCellEdit event.
however it does not seem to be firing. any idea on what i am doing wrong? there is no error, and i did check that i have included the jqgrid edit js files.
var lastsel2;
j...
Hi,
How can I fix the following problem with IE6/7(IE Tester) with drop-down list(with fixed width), as it is dropping UP instead of DOWN on roll out?
Any help appreciated. Thanks in advance.
...
I'm trying to build something similar to Facebook's privacy selection menu, except without the 'custom' option. It will only list a few options such as 'show to all', 'show to friends only', or 'completely hidden'. Right now I'm thinking of using simple JavaScript to change a hidden input field to the new value they click on, so if they ...
I am using ASP.Net 3.5.
I have fiiled dropdown list in javascript using ajax service but unable to get its selected value in button click event on server side.
...
I'm using a form where the user can edit an entry. Everything is populating and all is well with the exception that I can't get the drop down to show the project that they've already assigned the image to.
$project_qry = "SELECT * from projects ORDER BY title ASC";
$project_res = mysql_query($project_qry);
$project_drop = "<select nam...
Im having a little issue with the css drop down in my navigation. The products nav tab is suppose to have the drop down. Additionally, the nav works fine but it seems that the sub categories arent displaying correctly.
HERE IS LINK
Here is my navigation code:
HTML
<div id="nav">
<ul id="navlist">
<li><a href="home.html" ...
Hi,
I am using PHP 5.2 on SUN OS server. Having problems with the following piece of code that for a drop down:
echo '<form action="" method="get">';
echo '<p>Information:<br />';
echo '<select name="acctno" style="width: 100px;">';
foreach ($this->account_names as $acctno => $acctname) {
echo '<option value="'.$acctno.'">'.$acctnam...
Hello ..
I want to know the error in this code
The following code retrieves the names of the members of the database query in the
dropdownlist
But how do I know who you selected.... I want to send messages only to the members that selected form dropdown list
<?php
include ("connect.php");
$name = $_POST['sector_list'];
...
hi ,
in this code how can selected multiple value from dropdown list
<?php
include ("connect.php");
$member_id = intval($_POST['sector_list']);
if($member_id == 0) {
// Default choice was selected
}
else {
$res = mysql_query("SELECT * FROM members WHERE MemberID = $member_id LIMIT 1");
if(mysql_num_rows($res) ...
Now that jQueryUI 1.8 is out, I was browsing through the updates and came across the new Button widget, and in particular one of the demos with the SplitButton with a dropdown. This demo seems to suggest that the Button widget could be used to create a dropdown menu here.
As a matter of discussion, I was wondering what ways there are to...
Hi. i am very new to iphone development. I want to make a dropdown list from scratch. Can anyone plz tell me how to do so. thanx in advance
...
So I have a drop down box in my vb6 form, I was wondering if there was an easy way to have it display the dates for the week begining for the next 4 weeks. e.g. if it was running now it would have
19/4/2009
26/4/2009
3/5/2009
10/5/2009
...
I'm inserting a dropdwon list in datagrid on row editing. When i run the project the datasource is not rekognized. The asp.net part is there:
<asp:TemplateField HeaderText="Lookup 1">
<EditItemTemplate>
<asp:DropDownList
ID="Loocup1Drop...