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 wOOdy-Soft 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: Ineedjava
  • Content: Threads
  • Order by date
  1. Ineedjava

    How do I turn-off ActiveX warning messages?

    I've disabled ActiveX controls (signed and unsigned) because it has been an "infection route" for my browser to be highjacked. Now when I visit a page with an ActiveX control, I get a standard warning message that the page may not display correctly. How do I stop the warning message from...
  2. Ineedjava

    Memory Requirement for XP Pro

    I am considering buying a PC with a 2.6ghz processor and 512MB DDR RAM. For the first time in my fun career, I will be installing XP Pro on the PC and using the machine as a file/print server and broadband internet gateway for 6 other locally attached PCs. If the 6 local PCs all have logged...
  3. Ineedjava

    Proper coding of Pop-up window

    The code below from the Bestbuy website is somewhat confusing to me. In pseudo code it is saying "if newWindow exists and newWindow is not closed, then focus on newWindow, then assign a url to newWindow" Well, if newWindow exists then why test to see if it is closed? ---- Code...
  4. Ineedjava

    HTML or hex code for a half space?

    If & nbsp places a space on a web page, is there a code for placing a half-space on a web page?
  5. Ineedjava

    language = javascript

    If I use the code: <Script language=javascript> then what version of javascript does the browser default to? Should I assume that all versions (1.0 thru 1.3) of javascript are included in the latest IE or Netscape browser?
  6. Ineedjava

    New window name and focus

    I have a question concerning this javascript code that is used to create a pop-up window to display photos: newWind=window.open(&quot;&quot;,&quot;winnam&quot;); output=&quot;<HTML><BODY> blah blah blah </BODY></HTML>&quot; newWind.document.write(output); newWind.document.close()...
  7. Ineedjava

    Testing a variable's value

    Hi, In Javascript, I am testing the value entered into a donation amount box on a form. I want to make sure that the user enters a donation amount in the box greater than 1. So I am using this if statement: &quot;If ( amountbox > 1 ) ...&quot; The problem is if a user enters...
  8. Ineedjava

    How do I override a CSS setting?

    My CSS entries are listed in a single external file named styles.css In that file, A:Link is given a color, font-size, etc. In my HTML document, there is a special situation where I need to override the font-size assigned to a link. I tried placing a <font size=&quot;-2&quot; > command in...
  9. Ineedjava

    Closing open window

    I've successfully created a pop-up window (using window.open command) in which I display a jpeg image. I've had no problem automatically closing the window (named newWind) using a javascript command like &quot;newWind.close()&quot; which is executed upon an onUnload or onClick. Now, rather...
  10. Ineedjava

    How do I test for a preloaded image being fully downloaded?

    I am preloading a large animated gif file. When fully downloaded, the animated gif will replace (swap out) a small static gif file. So how do I test for when the image is fully downloaded? Using &quot;onload=&quot; in the BODY statement doesn't work because the web page has loaded...
  11. Ineedjava

    image LOWSRC attribute

    Is anybody else having problems getting the <img LOWSRC=&quot;picture.gif&quot; command to be interpreted correctly by Internet Explorer version 5.5 ? When I visit a test code page like this one: http://www.idocs.com/tags/images/lowsrc.html ...then my browser does NOT initially display the...
  12. Ineedjava

    Server side scripting under Linux environment

    How is a &quot;Linux oriented CGI script&quot; different from a regular CGI script? Sorry for the newbie question but I was going to install an active server page containing server-side VBscript and the web hoster said they do not have the software installed to handle this type of page. They...
  13. Ineedjava

    Controlling the loading of animated gif

    On a home page, I am using an animated gif that has about 25 frames in it. Presently, the animation starts to play while it is still downloading, which does not look very good. Is there some way to deploy Javascript so that the animation does not begin playing until it is fully downloaded?
  14. Ineedjava

    Need to get rid of border area inside of Pop-up Window

    I'm using pop-up windows to display photos. I'm generating the new window using the window.open command. There is a default border area (not specified in my javascript) that is in between the edge of the photo and the edge of the window. How do I get rid of this area so that the edge of the...
  15. Ineedjava

    Pass a Window Title to a Pop-up Window

    Below is working Javascript code that displays a full-sized image in a pop-up window when a thumbnail image is clicked on. I like this code because: 1) a single window is used to display pictures; 2) even if the window is minimized, the window is made visible when an image is clicked on; 3)...
  16. Ineedjava

    Newbie Question on Pop-up Window

    Hi, I'm new here. My goal is to use javascript so that when a small thumbnail image is clicked on, the larger version of the image is displayed in a separate pop-up window. Gee, it seems simple enough. When I use the code for this task (borrowed from the free website below) and run it from my...

Part and Inventory Search

Back
Top