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

  1. crw150

    troubleshoot java.exe responding very slowly

    I am using Avast but it isn't a new install. As far as I know, XEP and Avast were running together before without any problem. But could something have changed that so that Avast is now having some negative effect on Java? I mentioned InstantRails because I had used XEP all afternoon to run...
  2. crw150

    troubleshoot java.exe responding very slowly

    Hi experts, I don't know where else to go with this question and would be grateful if you could point me in the right direction. I've run RenderX XEP 4.6 for several years with no problem, but suddenly it is VERY slow to respond, 2-3 minutes just to open a file. I believe it is a problem with...
  3. crw150

    does preloading images affect load speed of default page?

    I appreciate your explanation. Having 17 thumbnails plus enlarged images for each, I think I should follow your lead and NOT preload. Thanks so much, CRW And on the non-js issue, thank you, and I understand the ctrl+F5 *should* work, but it doesn't. I also tried closing IE6 and closing Windows...
  4. crw150

    does preloading images affect load speed of default page?

    My page has 17 thumbnails, and onmouseover an enlarged image of each thumbnail is displayed. The code for preloading images is at this FAQ: faq216-4652 If I include that code on my default page to preload all the images, including the large hidden images, does that make the default page load...
  5. crw150

    advanced rollover

    I'm sorry I missed this post earlier, but I just spent a week struggling through this same problem. If you're still working on it, the code at this link might be helpful: http://www.brainboxweb.co.uk/capabilities/hover The code I came up with is at www.tylerkrieg.com but I don't recommend it...
  6. crw150

    sum of results of multiple functions

    Hello, I'm working on a script to show an enlarged image onmouseover of a thumbnail (see www.tylerkrieg.com). It works except for positioning. I have these two functions (they work independently, I've tested): function findPositionY( obj ) { . . . return [ obj.y ]; } function...
  7. crw150

    thumbnails with enlarged image on hover, varying sizes

    Ha, you're right! I have zero experience with server side code, and I need to get this site fixed quickly. I will have a go at the CSS idea. I think I can struggle through the javascript faster than trying to learn a whole other ballgame. Thank you very much for your help and your patience! CRW
  8. crw150

    thumbnails with enlarged image on hover, varying sizes

    Well, my page is set up like this (pertinent parts) <style type="text/css"> img.rightFirst {float: right; width: 91px; height: 101px; border: 1px solid #728DA6; margin: 2px 1px 0px 1px; padding: 1px;} img.right {float: right; clear: right; width: 91px; height: 101px; margin: 0px 1px 0px...
  9. crw150

    thumbnails with enlarged image on hover, varying sizes

    Hi, I have a page with numerous thumbnails (see www.tylerkrieg.com). At present, clicking a thumbnail makes an enlarged version of the photo open in a new window. But I need to change this to a mouseover event so that on hover, a larger version of the image appears, then goes away when you...
  10. crw150

    use javascript to load external .js file in Netscape 7

    Hi Dan, No, I can't confirm that it's getting into the else statement. Because, duh, it isn't. I guess because it worked in IE and FF I got sidetracked, but after your post I kept fiddling with the code. It now works in IE, FF and NN. I don't even know why, but it's fixed. So sorry to clutter...
  11. crw150

    use javascript to load external .js file in Netscape 7

    Hi, I'm a javascript novice and have searched for days but am still lost. The code below is supposed to load an external .js file depending on the browser in use. It works fine for IE and Firefox. But it Netscape 7 it only loads the css file, not the .js file. I've tried all the variations I...
  12. crw150

    toggle display--functions conflict

    Okay, great! I think I see what you mean. Plus, I had saved some script from the web that's a bit complex for me, but I think it does something like that. I'll keep banging on my code. I just didn't know where to start. Thank you very much! crw150
  13. crw150

    toggle display--functions conflict

    Thank you so much. ids was a global variable because I don't know what the heck I'm doing. Now I am SO close, but there are still 2 problems, and surely they must be related. One is that when I click to hide all notes, the value of the individual buttons does not switch from "click to hide" to...
  14. crw150

    toggle display--functions conflict

    I corrected my code as shown above, and now all the togShow buttons (one for each individual note) work correctly, but the expandCollapse button (one button to expand or collapse all notes) does not work at all. Obviously, I don't understand. Are you saying you only cleaned up the basics, and I...
  15. crw150

    toggle display--functions conflict

    togShow controls individual buttons. expandCollapse controls all buttons. But the two functions do not work correctly together. What have I done wrong? The button to expandCollapse all must be clicked 2 or 3 times before it works. And once the "all" button has been clicked to hide all, the...
  16. crw150

    toggle text on multiple buttons

    Leaving out [0] did not work, but using "obj" and "this" did. Thank you SO much!!! I worked on this for days and got nowhere. Now I just have to get another [Display All | Hide All] function to work at the same time. As a rank beginner, I sincerely appreciate your help! crw150
  17. crw150

    toggle text on multiple buttons

    Please point me in the right direction. The following correctly expands or collapses the notes, but the button value does not toggle between "display" and "hide"--only the first button in the document shows the correct text when clicked. I understand that using the [0] I'm selecting only the...
  18. crw150

    expand/collapse all using elements

    Thank you. I fixed that now. Maybe I'm beginning to see the light. Except now I see that my funtions conflict--once I click "Collapse All", I can no longer open them individually. I assume that to correct that I need conditionals in each function. I guess the <div> thing was a no-brainer, but...
  19. crw150

    expand/collapse all using elements

    Okay never mind, I have it -- Almost! This code works: function expandAll(folderID, display) { notedivs = document.getElementsByTagName("div"); for (var i=0; i < notedivs.length; i++) { notedivs[i].style.display = 'block'; } } function collapseAll(folderID) { notedivs =...
  20. crw150

    expand/collapse all using elements

    Hi, I'm an extreme newbie to JavaScript, have searched dozens of threads and examples, but I'm still not sure what I should be trying to do. My XML document contains <item> elements, and some <item> elements contain a <note> element. I managed to write a JavaScript code that lets the user...

Part and Inventory Search

Back
Top