Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jgannaway

    Highlight a SELECT drop-down list onFocus

    Here's my code: <select id="fruit" name="fruit" onfocus="this.style.backgroundColor='rgb(255,253,216)';" onblur="this.style.backgroundColor='';"> <option>apple</option> <option>orange</option> </select> When a user clicks on the Drop Down List, here are the results: In Mozilla: The box...
  2. jgannaway

    Using Javascript document.all for input tags that have array IDs

    Easier to show than explain. I've got an HTML page with a bunch of drop-down lists (<SELECT> tags). There's a dropdown for each state. Each drop down contains <OPTION> for each county within that sate. <SELECT NAME="county[AK]" ID="county[AK]"> <OPTION>Alaska county 1</OPTION>...
  3. jgannaway

    How do I make an UPDATE SELECT query?

    Jim... Thanks for the offer to help. I just figured out what I wanted: UPDATE log SET fodler_reset = 1 WHERE order_id = 2000 AND folder_id IN ( SELECT folder_id FROM log_reset WHERE button_id = 300 ) Hope this helps someone else in the future. Thanks all! -Jeff "Grace... She...
  4. jgannaway

    How do I make an UPDATE SELECT query?

    I have a LOG table that has a filed named "folder_reset". If it's equal to 1, then the folder has been reset. A folder gets reset when a user clicks a button (button_id). A reset button can reset multiple folder_id's. I built a refernce table named "folder_reset" that links button_ids with...

Part and Inventory Search

Back
Top