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 strongm 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: *

  • Users: vego
  • Order by date
  1. vego

    Time module

    I'd recommend using the POSIX module using strftime(). One can manipulate just about anything with it.
  2. vego

    printint <\QUESTION>

    That's what I was thinking, too. print "<QUESTION> $questions <\/QUESTION>";
  3. vego

    Continuous div background color changer

    Excellent! Thank you
  4. vego

    Continuous div background color changer

    Thank you, but I'm still having a problem <body> <script language="JavaScript"> <!-- // please keep these lines on when you copy the source // made by: Nicolas - http://www.javascript-page.com var currentcolor = 0 function initArray(n) { this.length = n; for (var i =1; i <= n; i++) {...
  5. vego

    Continuous div background color changer

    OK, thank you, but I'm not sure what syntax to use: document.divname.bgcolor or divname.bgcolor ??
  6. vego

    Continuous div background color changer

    Can anyone convert this little script to continuously change the background of a DIV, instead of the background of the page? http://javascript.internet.com/bgeffects/fader.html
  7. vego

    reusable generic subroutines

    And in your attempt, how did you "try" to require that did not work?
  8. vego

    Site map buider

    Check this one out: http://fuzzelfish.com/home/products/treeviewgen/main.asp
  9. vego

    Set focus on a form field not using the body onload method

    Hi, just curious to know if there is a way to set the focus in a form field OTHER than using the document.formname.fieldname.focus(); method in the body tag as an onload event? Thanks.
  10. vego

    Where are my variables??

    Try moving the BOLD lines below your parse subroutine like this: sub parse { @pairs = split(/&/, $query); foreach $pair (@pairs) { ($name, $value) = split(/=/, $pair); $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $form{$name} = $value; } $item_name =...
  11. vego

    Form button as a link question (non-javascript)

    ThanX, cLFlaVA Cheers!
  12. vego

    Include Question

    Thanx, Chris... I have just recently learned that the technique I am looking for uses the HTML::Mason module in Perl, so I guess I'll look into that method. Temporarily, though, I think I can add the "extra" data to the output of my script to simulate replacing the "whole" page as opposed to...
  13. vego

    Form button as a link question (non-javascript)

    I'm searching for a NON-JAVASCRIPT form button solution for use as a link to another page. I found this on the NET, but am curious as to whether it is a viable cross-browser solution. It does work in IE... not sure of other browsers. Anyone? <form method="link" action="somepage.htm"> <input...
  14. vego

    Inserting HTML file into HTML page

    yes, most likely that will be the case, depending on your server configuration.
  15. vego

    Include Question

    Ok, Thanx, guys for the input, but I guess the only way is the iframe. One last shot, I'll try to further explain: I have a page in which I include a Perl script like this into the content div. <!--#include virtual="script.pl" --> That works just fine. The problem is the script is a...
  16. vego

    Inserting HTML file into HTML page

    You can easily use SSI for this if it is available from your host. Whatever pages you want to add the menu to can be done like this: <!--#include virtual="menu.html" -->
  17. vego

    tooltips in SELECT dropdownlist possible?

    Have you seen this thread? http://www.tek-tips.com/viewthread.cfm?qid=892713
  18. vego

    inline lists - can each list item be the same width?

    try this... <head> <style type="text/css"> <!-- ul { margin: 0; width: 306px; background-color: #000000; } li { margin: 1px; padding: 5px; width: 100px; display: inline; text-align: center; background-color: #ff0000; } --> </style> </head> <body> <ul> <li><a href="#">THIS</a></li> <li><a...
  19. vego

    Include Question

    Yes, I know all about what you're saying. The problem lies in the execution of the script once it's loaded into the div. Example: I load a div with a script using an include... no prob. Now, that script is a form dynamically generated by the script with an action set to do some server-side...
  20. vego

    Include Question

    I posted this same question in the Perl forum, but now that I think about it, maybe it can be solved here. What's the proper way to include a cgi script into an HTML (using an include) page? I know I can simply insert <!--#include virtual="/cgi-bin/script.cgi" --> into the correct div in the...

Part and Inventory Search

Back
Top