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...
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...
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...
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...
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...
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...
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
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...
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...
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...
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
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...
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...
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...
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
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...
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...
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 =...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.