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 Chriss Miller 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: elegidito
  • Content: Threads
  • Order by date
  1. elegidito

    random numbers?

    im looking for a function to generate random numbers, for example Javascript has Math.random() im looking for a similar function in CGI. thanks Suceess, thats the way you spell success! Got a question? Ask IMOZRMY!
  2. elegidito

    reading from a file..

    #!/usr/local/bin/perl $lfile = 'blah.txt'; # read file into var called buffer. open(IPF,&quot;<$lfile&quot;) or die &quot;failed to open log file&quot;; while (<IPF>) { $buffer .= $_; } close IPF; print &quot;the $buffer&quot;; exit(0); this is supposed to load the text file into...
  3. elegidito

    Disabling &quot;My Pictures&quot; toolbar

    I stumbled upon this while searching through the MSDN library. It disables the little toolbar that pops up in IE6 when you hold your mouse over an image. I've seen a couple posts about this recently, so thought I would post something about it. In your <img> tag you can put...
  4. elegidito

    Converting %3D to &gt;

    how would I write a script to change all the %3D and %20 to > and a space. for example: this : %3Cfont%20color%3D%22white%22%3ETHIS%20IS%20THE%20COOKIE%20VALUE%3C/font%3E would be: <font color=&quot;white&quot;>THIS IS THE COOKIE VALUE</font> thanks The pen is mightier than the sword.
  5. elegidito

    Why isnt this working?

    I'm creating a cookie containing the value of the input box, named 'input1' in a form named 'form1', but it says that document.form1.input1.value is null or not an object, could someone look at it for me? heres the page: http://www.geocities.com/ccxze/uploadstatus.html thanks a lot! The pen...
  6. elegidito

    set font color...

    cant think ATM. is there a document.whatever for the font color and face? your help is greatly appreciated. thanks. matt
  7. elegidito

    change style onMouseOver ???

    is there a way to change the style of an <input type=&quot;text&quot;> onMouseOver?...
  8. elegidito

    Can you run programs from..

    javascript?.. like say i wanted to have the user click on a link that would then proceed to open Window's Notepad or some other program, assuming it exists on their hard drive. thanks
  9. elegidito

    Search a page and store as variable

    Is there any way to search a url from a webpage, store that information as a variable, and then sort it into some type of list or something?
  10. elegidito

    need some cookie help

    need to write a cookie and read a cookie for the following code..: <HTML> <HEAD> <SCRIPT LANGUAGE=&quot;JavaScript&quot;> <!-- function woot() { name = window.document.form1.text1.value; document.writeln(name); } //--> </SCRIPT> </HEAD> <BODY> <FORM name=&quot;form1&quot;>...
  11. elegidito

    Need a cookie...

    Have this..: <HTML> <HEAD> <SCRIPT LANGUAGE=&quot;JavaScript&quot;> <!-- function woot() { name = window.document.form1.text1.value; document.writeln(name); } //--> </SCRIPT> </HEAD> <BODY> <FORM name=&quot;form1&quot;> <textarea name=&quot;text1&quot; rows=20 cols=60> </textarea>...

Part and Inventory Search

Back
Top