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 TouchToneTommy 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. Pirellio

    Hover Image doesn't go away in IE6

    yes http://www.cheshirecatgifts.com/Cheshire.Cat.Gift.Baskets.607.217.7191/Baby.cfm I got it to work, found this. .hoverbox a { position: relative; } .hoverbox a:hover { display: block; font-size: 100%; z-index: 1; } .hoverbox a:hover .preview { top: 25px; left: -70px; } .hoverbox...
  2. Pirellio

    Hover Image doesn't go away in IE6

    Works good in FF, in IE6 the images appear, but when I mouse out the images stay, even when I mouse over the next preview. IE6 images stay, need to have them go away on mouse out. <style type="text/css"> /* =Hoverbox Code...
  3. Pirellio

    Posting form to one external url, but sending user back to same url

    I want to submit information to an external client The form is on www.myurl.com then onsubmit www.external.com?this=that The external url is a lotus notes db can't use a redirect back to my url focus back to in the onsubmit www.myurl.com your email sent Any Ideas??
  4. Pirellio

    application.cfc onSessionEnd isnt running my query

    Cant seem to get my query to run when the session times out. When a person logs in I set their id to session.userid Now when the session times out, I want to run this query <cfquery datasource="#application.dsn#"> UPDATE Logger SET therein = '0' WHERE logerid = #session.userid#...
  5. Pirellio

    5 different named checkbox, have to make sure one is checked

    Cool thanks This is what I ended up with if (<cfloop query="theItems"> document.getElementById('#theItems.theVar#').checked <cfif (theItems.CurrentRow NEQ theItems.RecordCount)>||</cfif> </cfloop>) { return true; } alert('You must check at least one item!'); return...
  6. Pirellio

    5 different named checkbox, have to make sure one is checked

    I mean it checks them but all of the boxs have to be checked in order for the form to be submitted, I just want to make sure one box is checked.
  7. Pirellio

    5 different named checkbox, have to make sure one is checked

    Ok maybe I am confusing myself - I just want to make sure one box is checked yes - this doesn't work either <script language="javascript"> function validateform(){ if ( !document.getElementById('RegularBox').checked ||...
  8. Pirellio

    5 different named checkbox, have to make sure one is checked

    This is making me check all the checkboxs or none at all can anyone help? <script language="javascript"> function validateform(){ if ( document.getElementById('RegularBox').checked || document.getElementById('SeniorBox').checked ||...
  9. Pirellio

    5 different named checkbox, have to make sure one is checked

    This is the code I have <script language="javascript"> function validateform(){ if (<cfloop query="theItems">!document.#theItems.theVar#.checked || </cfloop>){ alert('You must check at least one box!'); } } </script>
  10. Pirellio

    5 different named checkbox, have to make sure one is checked

    I have 5 different named checkboxs, have to make sure at least one is checked on submit Any Ideas
  11. Pirellio

    Good way of checking if an uploaded file has a space in?

    I saw this before http://www.dreamincode.net/code/snippet980.htm
  12. Pirellio

    Trying to clear text field on checkbox unchecked

    Thanks a lot, didn't see I was naming it the same
  13. Pirellio

    Trying to clear text field on checkbox unchecked

    Ok a person clicks on the check box the text field populates with a number 1 I want it to clear if they uncheck the text box now but can't Here is the code - see function Quantity1() <script language="javascript"> function OnlyNumbers1() {...
  14. Pirellio

    Set page title to a variable I can use

    the title is dynamically driven, and there are to many different pages where it is set up differently, so I need to use the title to populate the meta tag. I am trying to get to work below. <SCRIPT LANGUAGE = JavaScript> //alert(document.title) { document.write("<META NAME=\"funnel\"...
  15. Pirellio

    Get page title and set it to a variable.

    Everything is dynamically driven This code will be in the footer and generate differently each time its ran I have this so far but can't get it working <SCRIPT LANGUAGE = JavaScript> //alert(document.title) { document.write("<META NAME=\"funnel\" CONTENT=\"" + document.title + "\">\n")...
  16. Pirellio

    Set page title to a variable I can use

    No I am trying to make the Meta tag dynamic from page to page So with every new page - the meta tag will change to that page title. <title>Home Page</title> Grab the title an set the meta tag the same content. <meta tag name="funnel" content="Home Page"> Then they go to contact us page...
  17. Pirellio

    Get page title and set it to a variable.

    Get page title and set it to a variable. <title>Home Page</title> <c:set var="theTitle" scope="page" value="<title>"/> <meta tag name="Funnel" content="<c:out ${theTitle}/>"/> Any idea how to achieve this goal?
  18. Pirellio

    Set page title to a variable I can use

    I need to Set page title to a variable I can use in a meta tag. I get this to work - and title shows in the input field <SCRIPT LANGUAGE = JavaScript> //alert(document.title) function getTitle() {document.titleForm.theTitle.value = document.title}; </SCRIPT> <body onload="getTitle();"> <form...

Part and Inventory Search

Back
Top