I have a page that is written using lasso (like php). There are times where I come back to the same page but the form elements are gone. If I have something...
What may be happening is that the javascript is firing before that section of the body is written. You could try moving your script below the appropriate...
Not sure I understand you completely here. I.e. why would the form elements suddenly be gone? Is it that the page has no data to display, and the lasso code...
I am unable to get a javascript menu to work in Opera,Mozilla, or Netscape. The menu displays, however no dropdowns appear, and nothing is "clickable" Same...
Code that is written specifically for IE often will not work on Netscape/Mozilla or Opera. They use different DOMs -- Mozilla is closest (as far as I know) to...
Well the odd thing is that the same code applied to another website, works in all broswers. When I looked line by line in both the html and the js I cannot see...
... Can you provide the URLs for the page that works and the page that doesn't? That would probably make it easier to determine the problem you're trying to...
Stephen Hait
shait@...
Jan 2, 2004 8:02 pm
19634
Can you clone the working one and run it from the same folder as the one that doesn't? Does it reference a js file and if so, are they identical? JoAnn A....
Is there a way to get a page to refresh itself every day at a certain time (like midnight)? I know how to use a Meta tag to do a refresh at a set time interval...
It'll be something subtle, so you have to narrow it down first. JavaScript has a habit of just giving up, so your page just sits there and looks at you. The...
... Something like this would probably work -- not tested, since it's not midnight (here) yet :-) function init() { var now = new Date(); var midnight = new...
Hi, One more thing you can do, just copy the code and paste into textpad and save the file. Run it... This is a very stupid reason but sometimes usefull. I did...
... That's not what I'm after. What I want is for my page to refresh itself at 12am every day. Dean Hamack Macromedia Certified Flash MX Designer/ Lead Web...
check your values.......IE is more forgiving of non specific values....it just assumes that you are referrin to pixels or whatever default measure.... but in...
I made a script to change the font size in a textarea. It works fine until not enclosed within the <form> tag. It would not work when the textarea is enclosed...
... First tip: open Mozilla's JavaScript console; it'll help you find the cause of this and a lot of similar problems. ... You have an identifier ("name") and...
I can not tell you why but I am fairly sure it will work inside a table tag to. zeshanism <zeshanism@...> wrote:I made a script to change the font size...
I would assume that you would want to put the textarea in a form. I would take the value of the selectbox and parse it to an integer variable, and then use...
I have a page that is functioning, but something is wrong with the way I've written my foreloop which is something as follows: function preloadPopImg(){ for...
Hello, is it possible to embed a short video file in html without caching it? In other words, I want to show the video to the user, but I don't want that the...
I think the problem is that you're declaring the variables as var - i.e. local variables to the function preloadPopImg - they'll go out of scope when the...
I am really new to JS. In fact I used a generator from javascript.internet.com to create a pop up window link. I used this same code for another site and it is...
Please be more specific on what isn't working. This is a very "busy" page and I don't have time to try out every ling on it. Also please indicate what browser...
David, That was the problem. I can't tell you how much time I've spent trying to figure out that bug. I'll work it through without the eval statements to...
The popup works for me - but is baddly sized for the window that opens. Using the Javascript debugger in Mozilla Firebird it appears that you have an...
Have you checked what the javascript debugger in Mozilla gives you? I find that adding a few alerts to show what line the code stops at, plus looking at the...
Hi., I have a link in a page. On click of the link, i invoke a javascript to submit the action in the same page and reload the page. The link in my JSP page is...