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 IamaSherpa 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. JSDNUK

    Connecting to Multiple Databases - Performance Recommendation Please

    Hey DB people... Does anyone know if it is better as a general rule (server performance wise anyway) to connect to a single database with many tables or multiple databases with fewer tables?? In this case I have a small calendar database and large navigation/metadata database -- both are MS...
  2. JSDNUK

    GetBaseName Question

    Brilliant!! Many thanks DNG!!!
  3. JSDNUK

    GetBaseName Question

    Hey ASP ppl's... Does anybody know if it's possible to return the BaseName of your current document without having to write it into the function manually? i.e without having to write set fs=Server.CreateObject("Scripting.FileSystemObject") Response.Write(fs.GetBaseName("200001.asp")) I've...
  4. JSDNUK

    Can anyone help me add a timeout to this script?

    Unfortunately I am not getting any script errors. The script behaviour, however, is failing completely. Basically, the 2nd level of navigation appears but either disappears on mouseout straight away or remains on screen permanently depending on which piece of incorrect code I use at the time...
  5. JSDNUK

    Can anyone help me add a timeout to this script?

    Ok, i'm with you now... Sorry about that. This script controls a CSS/List based 2nd Level Navigation for IE. What i'm trying to do is add a delay on mouseout in the hope that this will make my site a little easier to use (apparently).
  6. JSDNUK

    Can anyone help me add a timeout to this script?

    I was hoping that I might be able to replace the line (8) of code... this.className=this.ClassName.replace(New RegExp( " sfhover\\b"), ""); With something along the lines of... the_timeout = setTimeout(this.className=this.className.replace(new RegExp(" sfhover\\b"), ""), 1000); Do you know...
  7. JSDNUK

    Can anyone help me add a timeout to this script?

    Basically all I need to do is add a timeout to the onmouseout function, but have thus far had no luck :( e.g. the_timeout = setTimeout(this.className=this.className.replace(new RegExp(" sfhover\\b"), ""), 1000); See the full script below. Many Thanks... again!! sfHover = function() { var...
  8. JSDNUK

    Tableless Layouts: Having problems scaling height/width. Help me PLEAS

    First of all, thanks for clicking!! What i'm trying to do is replicate the layout found at PositionIsEverything (see link below) but with a scalable tableless interface (i.e. width:100%) http://www.positioniseverything.net/piefecta-rigid.html I've found a number of resources online, but have...
  9. JSDNUK

    URGENT!!! IE6 nested table height scaling problem!!!

    Basically I've got a problem with IE6 (who doesn't)... Anyway, what I'm trying to do is stretch the area on the right hand side of my page down to the footer. N.B I'm using nested tables. Now, this code I'm using works fine in IE5.5, Firefox and at certain resolutions in IE6, but not...
  10. JSDNUK

    Executing Javascript w) Cookies from another URL

    Hi all, I recently developed a website and have been requested to build a template (using the same style/layout) for affiliated groups. Everything is just about in place here, however I am having some problems getting my dynamic css writer (which controls text size) to work on domains outside...
  11. JSDNUK

    Invaliad procedure call or argument... Dynamic CSS + External CSS swit

    Basically I've got 2 Javascripts, one that dynamically writes CSS (currently used for user text size selection) and the other that selects alternate external CSS documents (used to switch themes/colors). From what I can see the error (Invaliad procedure call or argument) only occurs in IE5.5...
  12. JSDNUK

    Executing a javascript from a option/select box??

    Thanks for your help NiteOwl!! Tried something very similar earlier but with no luck, this version (on the other hand) works brilliantly :)
  13. JSDNUK

    Executing a javascript from a option/select box??

    Can anybody help me with this?? Been attempting to use an old nav script to execute a script which should switch the active style sheet of the document. Not the best at JS, so any help would be greatly appreciated. Many Thanks!! Script below... function surfto(form) { var...
  14. JSDNUK

    Javascript Redirection - via Disclaimer Page

    Thanks Dan, Have this sending the querystring beautifully now!! The querystring reader came together quite easily as well. Code below should anyone be looking for something similar. Referrer Page... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  15. JSDNUK

    Javascript Redirection - via Disclaimer Page

    I've been having a few problems getting a Javascript Redirection system setup. Basically, what i'm trying to do is modify all my site's external links to send a querystring to a disclaimer page containing the requested URL. I'm not sure what I've messed up, but whenever I open the page in...
  16. JSDNUK

    Form Elements to Array to String Problem...

    Fair point. To be honest I completely missed both of those. Will see what these changes do. Thanks Dan...
  17. JSDNUK

    Form Elements to Array to String Problem...

    Thanks so much for taking the time to explain where I went wrong, but i still don't quite understand how the (updated) code below doesn't work. Apologies in advance for being a dumbass if I've missed something... <script language="javascript" type="text/javascript"> var recipient = new...
  18. JSDNUK

    Form Elements to Array to String Problem...

    Sorry for the confusion Dan, but my comment was in regard to my most recent post which (to the best of my knowledge) had applied the comments of yourself, Tsuji, and Theniteowl. Have I missed something? dave
  19. JSDNUK

    Form Elements to Array to String Problem...

    Thanks Dan, you're a star!! Works perfectly! Now that the pressure's off, I'd still like to know why my script wasn't working. Can anyone help me out here??? Thanks!! dAve:)
  20. JSDNUK

    Form Elements to Array to String Problem...

    Hey Guys, Thanks for your help. I've done my best to take in all your advice, but am still not having any luck. I've set an upper limit for i (being equal to the total number of listings) and modified the syntax of document.consultationsForm('recipientdetails_' + i) but still without success...

Part and Inventory Search

Back
Top