Pull Down Menu
Jan 6, 2005
The options in one of my pull down menus link to other sections of the same
page. I've noticed that selecting one of these links opens a new instance of
the entire page instead of just scrolling down to the appropriate section.
How can I make the menu do what I want?
<form name="f1">
<select name="s1" class="hnhjumpbox">
<option value="#">See our Policies...</option>
<option value="#">----------</option>
<option value="#service">Service</option>
<option value="#payment">Payment</option>
<option value="#packing">Packing</option>
<option value="#shipping">Shipping</option>
<option value="#returns">Returns</option>
</select> <input type="button" name="test" class="hnhjumpboxbutton"
value="Go" title="Select a link from the drop-down menu first!"
onClick="location=document.f1.s1.options[document.f1.s1.selectedIndex].value
;"></form>
For instance, I have an anchor at the Payment section. When I select the
Payment link from the pull down menu, a new instance of the page opens and
then jumps down to the Payment section. I want it to jump down to the
payment section without opening a new page.
View 4 Replies
ADVERTISEMENT
Feb 27, 2009
I am creating a simple/static web site where i need to create pull down menu.
I am wondering how i can achieve it.
View 2 Replies
View Related
Jul 23, 2005
I am new to Javascript and I am having problems with loading a pull
down menu.
I get this error:
javax.servlet.ServletException: No data found
It will list the items just fine if I just list the items without
using the select & option tags. I would like to know why I am getting
an error with the following statement:
<select size="1" name="org">
<% while (rs.next()) { %>
<option value="<%=rs.getString("ORG_CODE")%>">
<%=rs.getString("ORG_CODE")%>
</option>
<% } %>
</select>
View 7 Replies
View Related
Sep 9, 2010
I have a client who requires a dynamic pull down menu (chained Select Menu) and also requires that it does a basic price estimation based on the selected options from the menus. I have been toying around with Xin Yang Chained Select Menu(Sample A1) as well as a randomly found javascript calculator(sample A2) I found through google search. When trying to combine the two the calculator becomes broken.
Sample A1
Code:
Sample A2
<html>
<head>
<title>Calculate Amount</title>
<script language="JavaScript">
function calcAmount(){
var oprice = parseFloat(document.getElementById("oprice").value );
var sprices = document.getElementById("sprice");
var sprice = parseFloat(sprices[sprices.selectedIndex].value);
var qties = document.getElementById("qty");
var qty = parseInt(qties[qties.selectedIndex].value);
var tot = document.getElementById("tot");
tot.value = (oprice + sprice) * qty;
}
</script>
</head>
<body>
<h3>Total Amount = (OpenPrice + SetPrice) * Quantity</h3>
<table border="0" cellpadding="2" cellspacing="2">
<tr>
<td>Open Price:</td>
<td><input style="width:100;text-align:right" type="text" id="oprice" value="0">$</td>
</tr><tr>
<td>Set Price:</td>
<td><select style="width:100" id="sprice">
<option value="100">100 </option>
<option value="200">200</option>
<option value="300">300</option>
<option value="400">400</option>
</select>$
</td></tr><tr>
<td>Quantity:</td>
<td><select style="width:100" id="qty">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="100">100</option>
</select>
</td></tr><tr>
<td colspan="2"><hr></td>
</tr><tr>
<td><input type="button" value="Total Amount" onclick="calcAmount()"></td>
<td><input style="width:100;text-align:right" type="text" value="0" id="tot">$</td>
</tr>
</table>
</body>
</html>
View 2 Replies
View Related
Mar 28, 2010
I have an function that shoud be activated when the pull down menu in triggerd, the if functions is corresponding to the same menu overig_eenh[]
[Code]...
View 5 Replies
View Related
Sep 23, 2006
Anybody has any idea on how to fire onchange event of a pulldown menu
with script.
I need to trigger it so it when i select a certain option from script,the event handler is executed.
View 1 Replies
View Related
Aug 15, 2011
I've managed to use a few pieces (Fancybox, Active Tabs)
I've been tasked with creating a pull down menu that modifies a search box. Very similar actually to the type of search you see on the top left of the jQuery Plugins page:
[URL]
So I need a pull down menu with multiple options that restrict the search box to only to search the selected option.
I don't understand the relation between the two boxes and how to pass the first option to the search box. Is there an existing plugin for this? Or a tutorial that someone can point me to? Or if the answer is, "Go read this book first" I'm happy to read that book.
View 2 Replies
View Related
Jan 24, 2009
I've been asked to create a site for my younger sister and she's requested a horizontal pull-down menu using graphics for the links instead of simply text. This is my first time trying to code such a menu (topic not covered in class) and I'm having some difficulty getting it to work completely.
Right now it's partially working. The various sub menus do show up when clicking or rolling over the previous menu item. However all menu items past the one clicked jump down one line when expanding instead of simply showing the sub menu under the main line up. The rollover also has issues but mostly because I haven't finished coding the onmouseout part, so it doesn't go away. I'm trying to get the main pull down working before tackling that part. Below is the JavaScript function I'm trying to use as well as a part of the menu. I've already spent months trying to get this working and am not making much headway.
[Code]...
View 2 Replies
View Related
May 18, 2005
url example:
whatever.com/index.html?name=username&password=password&gender=male&age=18
function getE(){
var url_string = String(document.location);
var url_array1 = url_string.split('?');
if(url_array1[1]){
var e_array = url_array1[1].split('&');
for(i=0;i<=20;i++){
if(e_array[i]){
pullE(e_array[i]);
}
}
}
}
function pullE(val){
var useVal = val.split('=');
alert(useVal[0]+" == "+useVal[1]); //display purposes
}
this would alert in order:
name == username
password == password
gender == male
age == 18
where useVal[0] is the element name and useVal[1] is the value.
View 14 Replies
View Related
Mar 17, 2007
I have a page with 2 drop-down menus. The task is, when you select
1 menu, your selection then changes the options available in the
other. This data happens to be drawn from a mysql database, so I
wouldn't think that it could be done purely in Javascript, but rather
a combination of PHP generating some JS code. Thing is, I don't even
see how to change a menu's available options with JavaScript, only
names and values of individual fields.
View 2 Replies
View Related
Feb 10, 2011
I am trying to pull a value being stored in a php function (it works fine) which is echoed into an html element, and use it in a javascript function. my HTML:
<img id="menu_image" src="<?php echo get_php_value(); ?>" width="356" />
my javascript:
function get_large_image(){
var image = document.getElementById('menu_image').src;
alert(image);
}
right now the alert is giving me flie path to the current page, I need a file path to the image. When I had javascript pull a value from an input tag using the id to reference and stored the php function in the value attribute, I got this: "object HtmlElement" The final purpose of all this is to modify dynamically and HTML <a>'s href and class attribute based on a certain condition being true.
View 2 Replies
View Related
Mar 17, 2011
Is there a way to pull a text off a certain div on a page, and put it into a javascript string? I'm certain that the field has a particular name and id that I can use, if need be.
View 1 Replies
View Related
Aug 18, 2009
I have got some code working below which creates a nice effect when shopping on a website. Basically i have a large image, and 4 thumbnails below, when i hover over the thumbnails the main image changes to match etc..Now i would expect this to work, but i dont know how to change the JS at the top of the page to match my requirements? The JS at the top is also selecting images 2,12,11 and 13, but again i want this to be linking to my table from database..
View 1 Replies
View Related
Aug 29, 2010
This data seems to stop the loop when in mozilla and i cant seem to be able to bypass it. i corrected the DOM by using the nodetype if statements and it produces exactly what i want it too in IE. In mozilla it goes through the first loop and cancels when adjusting the parent i. says the 7th(and last nextsibling)is null and stops all script.
here is the code XML
Code:
<?xml version="1.0" ?>
<holder>
<option>
<employee>
[Code]....
View 3 Replies
View Related
Sep 22, 2011
I would like to pull the displayed value from a select control, here is an example:
<select id="test" name="test" size="1">
<option value="1">Yes</option>
<option value="0">No</option>
</select>
I'd like Javascript to grab the Yes or No of the select, not the 1 or 0. So, for simplicity, lets use an alert: alert(document.getElementById("test").value) That produces the alert box with 1, I'd like it to alert saying Yes.
View 4 Replies
View Related
Oct 3, 2011
I would like to create three Pull Down Menus..This is how they would look. continents would make first Pull Down menu, the second would be countries, So if one picks from the first say Africa, the second would have only the countries in Africa. And when one clicks the second one, that is picking a country ... say Sudan, then the third Pull Down will have states/provinces in Sudan.
View 3 Replies
View Related
Feb 15, 2011
I have trouble with SuperFish Menu, of course it looks very nice and is good solution, but I am not advanced in CSS language.how to change space between menu and submenu in Navi-bar type menu? Now sobmenu hide part of menu, I have to must space.....
Attachments
superfis.JPG
Size : 11.4 KB
Download : 306
View 1 Replies
View Related
Jun 3, 2009
The problem is that the height of the second level menu results in their being gaps in between each menu item so that as you move your mouse down the second menu items it quickly closes again. scripting novice fix this by telling me which variable I need to change either in the Java script or the CSS files.
View 2 Replies
View Related
Apr 21, 2010
I am trying to use select options to get birthdate and calculate the age. I got the birthday with "birthDay = document.form1.selDate;" However i'm lost on the birthMonth and birthYear. I've looked at lots of examples. The birthMonth probably needs to be converted to integer, or use 1 thru 12 rather than Jan thru Dec. But birthYear i'd think would come back as a valid number. Is anyone familiar with this?
[Code]...
View 3 Replies
View Related
Apr 28, 2010
I'm using pull downs for date but it always starts up "Dec" "31" "Year". How can I set it to start as "Month" "Date" "Year"?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Main</title>
[Code]....
View 1 Replies
View Related
Apr 1, 2011
I am trying to create a form to edit existing data in my database. I have 2 drop down boxes( category then item) they do not work correctly. I am using php to populate the drop down boxes but there is nothing dynamic about doing this. I think I need to totally rewrite the page using java script or Ajax but I don't know what parts.So I want the user to select a category from a drop down list populated by database then have it populate the item list(so I think both of these need to be java script in case they change the category it will re populate the item list). Then I just want the selection of the item to pull the information to my form so they can update it and save the update(which I am pretty sure I can save the update as a php function but need to populate the item editable information in java script). I am really looking for help on how to setup the page with java script to make database queries and use the results to update parts of the page.In case you confused here is my flow:page loads
-User selects catagory query database for item list (on change event it think)
-User selects item.Item information is pulled and displayed from database(cost, serial number, quantity(another on change event)
-User is able to edit information and save updated results(run an update.php...)
View 10 Replies
View Related
Feb 15, 2006
I am relatively new to JS, altho have a lot of experience in HTML. Am experimenting with pull-down menus, and I would like the font colors of my text options in each menu to correspond to the text. Here's my code, and I've also included a list of the font colours if anyone can help with this that would be fantastic! Or if you could even get the backgrounds of the options to match the colours listed below (if you hit 'reply', look at the pull-down menus and underneath ''Colours'' you can see what I mean!) Code:
View 2 Replies
View Related
Jul 31, 2008
Does anyone know if there are any ajax functions that would allow me to pull certain content from one page and display on another in a named <div>?
I currently have some code that pulls all the content and works very well. I am looking to enhance this to say only pull the first <div></div> content.
View 3 Replies
View Related
May 23, 2010
I am trying to pull the time zone from the Client. I have the code below, but my computer is set to Central Stanard Timezone (-6) and its pulling (GMT -5) Eastern Timezone from my web hosting server. How can I correct this?
Code:
var timezone1;
var time2 = new Date();
timezone1 = (time2.getTimezoneOffset() / 60) * -1;
View 4 Replies
View Related
Oct 9, 2011
I'm having some issues with my code. I'm trying to pull data from one array and use it to populate a new array. With my initial array I can get the results of certain properties using 'servos[i].application'. Any servos that share their value with that of my filter box should be put into a new array called matches and allow me to referance them in a similar way 'matches[i].application'. At the minute I've got my code to populate the new matches array, i'm pretty sure, but when I try to get data out of the second array using the 'matches[i].application' style of query it says its undefined. I already have an array called servos which is full of 49 different servo objects. I've added the function containing this code and commented it too.
PHP Code:
function dataPull(){
//create servoStore to build page for display
//var servoStore="";
// search and get servos meeting application filter settings
// create new array called matches with set properties
var matches = new Array("application", "sclass", "type", "motor", "bearings", "gears", "modelno", "name", "speed", "v3_3", "v4_8", "v6_0", "v7_2", "weight", "dimensions", "opvoltage", "image", "description"); .....
View 3 Replies
View Related
Mar 6, 2011
Hey fellow coders. I've been searching for a script, but I'm coming up empty. The script will display products in a single row full screen left to right. To slide the products there is a pull bar. You can see how the exact script works on Keyboards.
View 2 Replies
View Related