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!

Recent content by choioilachoi

  1. choioilachoi

    Get Image Size in FireFox

    Hi trollacioud, Is it important? I just want to check the image size by javascript before uploading to server.. I dont want to use server side to check the image size, I want to use JS... Thanks,
  2. choioilachoi

    Get Image Size in FireFox

    I wanna check the image size before uploading to the server. Here is my code until now <html> <body> <input type="file" id ="imageid" /> <input type="button" onClick="check()" value="check button"/> </body> </html> <script language="javascript" type="text/javascript"> <!-- function check() {...
  3. choioilachoi

    Get Image Size in FireFox

    <html> <body> <input type="file" id ="imageid" /> <input type="button" onClick="check()" value="check button"/> </body> </html> <script language="javascript" type="text/javascript"> <!-- function hello() { alert('hello'); } function check() { image2 = new Image(); image2.onload =...
  4. choioilachoi

    Get Image Size in FireFox

    No, I'm checking the width and height of local file... So I can't use ur way?
  5. choioilachoi

    Get Image Size in FireFox

    Hi all, I'm getting image size in FF but I couldn't. image = new Image(); image.src = 'location'; then image.width and image.height just return 0 It's working with IE but FF. I have already searched but can't find any solution. Please help me, thanks very much :)

Part and Inventory Search

Back
Top