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 Mike Lewis 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: palva
  • Order by date
  1. palva

    Get Image Size in FireFox

    Maybe image is not completed? Try this: image2.src = temp; alert(image2.width); alert(image2.complete); alert(image2.width);
  2. palva

    Bitmap Encryption(General Query)

    Not Stenography but Steganography For example: http://www.jjtc.com/Steganography/ http://www.outguess.org/download.php http://members.tripod.com/steganography/stego/software.html
  3. palva

    show a Var in TEXTAREA

    <textarea name=&quot;ErrorReport&quot; cols=&quot;40&quot; rows=&quot;3&quot;>&quot;the_name&quot;</textarea> <SCRIPT> <!-- var the_name = &quot;hello hello hello&quot;; document.all.ErrorReport.innerHTML = the_name; // --> </SCRIPT>
  4. palva

    Check and change image size before show it

    <HTML><HEAD></HEAD><BODY> <IMG SRC=&quot;next.gif&quot;> <IMG SRC=&quot;previous.gif&quot;> <SCRIPT> <!-- for(i=0; i<document.images.length; i++) if(document.images[i].src.indexOf(&quot;previous.gif&quot;)>=0) document.images[i].width=100; // --> </SCRIPT> </BODY></HTML>
  5. palva

    Check and change image size before show it

    Sorry for my ignorance The Forum rules. The Forum softwere has twice omitted the letter &quot;i&quot; in brackets which followed object &quot;document.images&quot; and toggled on italic font
  6. palva

    Check and change image size before show it

    <HTML><HEAD></HEAD><BODY> <IMG SRC=&quot;next.gif&quot;> <IMG SRC=&quot;previous.gif&quot;> <SCRIPT> <!-- for(i=0; i<document.images.length; i++) if(document.images[i].src.indexOf(&quot;previous.gif&quot;)>=0 && document.images[i].width > 300) document.images[i].width=300; // -->...

Part and Inventory Search

Back
Top