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

  • Users: vego
  • Content: Threads
  • Order by date
  1. 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
  2. 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.
  3. 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...
  4. 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...
  5. vego

    Using SSI for page content question?

    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 page, but then how does one control the output of the script to be contained within that div. I'm using an...
  6. vego

    Allowable input param question

    Hi, I'm just putting the final touches on a little rating-type script and in an attempt to disallow any other input, (especially any back-door attempts), I've got the following: $number =~ /\d{1,2}/; $number != 0; $number < 11; Is there a way to write this as one, separate regex? To clarify...
  7. vego

    Aligning a fieldset form in center of page

    Hi, I'm curious to know the syntactically correct method to align the following in the center of a page. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">...
  8. vego

    Correct Permission Setting Procedure

    Hi, I'm confused on the correct way to set permissions to files/directories in a script. With windows, it's a no-brainer, but on a Debian/Linux server, I try to set permissions (automatically) from within the script like this and it won't work. if (!open(FH, $file)) { open(FH, ">$file") ||...
  9. vego

    Inherit border color ??

    Hi, I'm just wondering if one can set the color of... let's say a th, so that depending on the user's system/browser, the default color would show. What I mean is, if you were to just indicate a border for a table like this: <table border=1> ...you would end up with a certain color, depending...
  10. vego

    row & colspan attributes in XHTML transitional

    Hi, When parsing my document through W3C, I get errors telling me that I've not specified cols & rows in the textarea. This is true, but, I have set the attributes in the css for the textarea. Do I just put in... rows="SOMENUM" COLS="SOMENUM" AND LET THE CSS HANDLE THE REAL VALUES? Anybody have...
  11. vego

    Update procedure for message board

    Hi, everyone. I've written a simple message board and all works well, but I would like to have any posts that are replied to, go to the top line in my flat file. As it stands, the method below updates the $replies just fine and all, but I can't figure out how to make the update "AND" move the...

Part and Inventory Search

Back
Top