I have a form populated by PHP and MySql and I am trying to get the values returned. I have amanged to be able to move the items from one list box to another and get the values of the second list box. What I need now is the values of the items added to the second list box and the values of the items removed from the second list box. The website is currently under development on my local server but if you need to see it running LIVE, let me know and I will upload what I have currently.
I have created a form with 2 list boxes and coded to allow a user to move items from one list box across to another.
What I need to do now is
1. to send the completed right list to a php page for database updating.
2. be able to have up to 3 list box sets on one page and reference each individually. i.e one for parent categories, one for child categories and one for products belonging to this category.
the page is located at
[URL]
the code is as follows
Code: <HEAD> <SCRIPT LANGUAGE="JavaScript"> function move(frombox, tobox) { var arrFrombox = new Array();
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
When I fade something out the items below it jump up, then jump down again whenI fade it back in. Is there a way to maintain the space so the items below don't move?
I need to be able to move items that come from a database (no problem with that) between three multiple select boxes. I also need to be able to move the items up and down within individual boxes....
I have 2 select windows and have a function to move items from one select window to another. That was working fine until I had to change the names of each box in order to be able to post the select window as an array in PHP.
I'm trying to move a list of names from a textbox (jim;bill;sam;cathy;) to a listbox. My code so will move the name to listbox but all one line. I need the list the names in the listbox so that can click them one at a time. Please see my code. How can I modify it to fill the list one name per line?I don't want remove any names from the listbox till I click the "OK" button and overwrite what is in the textbox.
I want to use dreamweaver with javascript to do a litter project in which I want to move value "Saleman" from drop-menu 1 and value "Billy" from drop-down 2 to a list box. The result should be as follows:
dropdown 1 Manager Salesman (to be selected) Cleaner
I have a javascript index that is similar to the one in the Windows help. It has a text field that allows the you to type text and it finds the closest item in the list below the text field. The list is simply a select element with options that looks like this:
My problem is when I have a large list, the closest entry selects the item in the list at the bottom of the list box, not the top of the list box.
So here's the question: Is there a way to get the list box to display the selected item and move it to the top of the list and not just find it at the bottom?
To get an idea of what I 'want' it to look like, in Windows, go to Help & Support (in XP it's in your start menu) and pick Index. I basically want it to mirror that functionality.
I want to move elements of one select listbox to another if a checkbox is checked, but all the items get moved except one. Here is my code <html> <head> <script type="text/javascript"> function add_to_list(){ if(document.getElementById("add").checked){ var list_length=document.getElementById('firstlist').options.length; for(i=0;i<list_length;i++){
For some reason my loadFirstPage in the following code is unable to find the dynamically created list items built up in the buildGallery function. I have a button in the extended code that calls the loadFirstPage function on a click which works perfectly when I click it
var buildNavi = function(){ var naviTemplate ='<li class="prev"><a href="#" title="Previous">Previous</a> </li><li><span class="current"></span><span class="total">
I want to compare items based on what the user picks there will be 3 drop down menus and the drop down menus should alter the HTML table each time it is changed, giving different option values and stuff. I am wondering how to go about this I have the basic stuff setup but I am not really sure how to add to a table that all 3 options use.Here is my current code for the drop downs.
I want the user to select one of the options from above and a table to show up showing the differences between the others for example; someone selects Value 1 for compare, and Value 2 for compare 2, and Value 3 for Compare 3, they should be shown a table which has the differences between Value 1, Value 2, Value 3. So lets say Value 1 and Value 3 offers you "Help" while value 2 doesn't. it should show a table that says
I was recommended to vertically align these list items using javascript. I am needing to vertically align the "identity" and "web presence" list items with each other: [URL]
I was not able to make two things on this js. First one, if there is a same item on the boxes, the js must not move over item.(no duplicates on boxes) Second, if the move item is " All", the right box must not contain other items. Else move item is other than " All" then right box must not have " All"
I am having checkbox list and on top "add new" link. As I click on add new link dialog box appear exactly on checkbox list with form items and with submit button and as I click on submit button. Checkbox list appear with new added items.
I have selected a list that contains sub-lists. Now, I'd like to search for the list items that contain sub-lists (but not including the sub-list-items). I think the example below will explain what I'm trying to do.
HTML: <ul class="start-here"> <li>Do Not Need</li> <li>NEED THIS ITEM[code].....
I have created a simple portfolio item for a site I am working on, with left and right buttons to move between the visible thumbnails in the portfolio.
The problem is this: when I click on one of the left or right buttons used to scroll the active list items, it resizes the space between all of the thumbnails by 1 pixel per click, up to 10 clicks.
I have a multiple select list <select id=mylist name=mylist[]> <option id=1>first</option> <option id=2>second</option> <option id=3>third</option> <option id=4>fourth</option> <option id=5>fifth</option> </select>
Then I have a string of id's that I want to set to selected like so. var selectedIds = '1,3,5'; Is it possible to use jquery (preferably in a one liner) to set first, third and fifth to selected.?
How would I target (with jQuery or normal javascript) the 5th and 6th li in an unsorted list for styling? I need to change the css for only 2 items in a list.
I want to modify the appearance of an unordered list by assigning a value to each list item and then setting the custom properties for each list item. At first I was thinking of assigning a number to each list item and then controlling it's properties via that number.But now I'm wondering if jQuery can do a search for the list items content.
I am having difficulties to deal with a simple remove function.
I have an item list with "listitem" css class. I placed a button on each item to delete it. I am now trying to use the remove function to erase it from the page. I thought $(this).remove(); will work but it doesn't. I also tried something like this: $(this).parent('.listitem').remove(); but it didn't work.
When I write $('.listitem').remove(); it erased all the items of the list. I m just trying to be able to erase just the one clicked.