Is it possile to read the html source of a frame with javascript? That is I want to have a popup window read the calling window or frames source code on the...
Is it possible to send a user back to the Browsers home page that would open if they opened their browser for the first time? Thank you for you help....
Hello, you have not answered my question about cookies, but I must insist because is very important. It seems that there is some problem in the expiration ...
You mean the one set in the OPTIONS of the browser settings? If so the answer is no because both server and client side scriptings can't meddle for security...
You can try this, though some would find it rather unsual assigning an id to the <html> tag: 1) assign an id to the <html> tag, which encloses the whole...
I'm sure it is possible but still can't remember how... so what I want is either script or CSS that will tell browser to strech background picture to fit...
Hello and thanks for your answer. Unfortunately the array is not the problem. Even if it would refer to an undefined element, the text file should be printed...
Predrag, ... The only way I can think of to do this is to add an img to your page and use css to position it to take up the whole window. This code works in...
Make sure you're not clearing your temporary Internet files cache at the end of the session. I haven't tried it, but I'd expect that that would remove the...
Thank you for your responce, It is very close to my needs, What I am hoping for ultimately is to not have to edit the original file. My scenerio is a side...
My temporary files are not automatically cleared at the end of the session. I'm not configured IE this way. Perhaps in the script there can be something that...
Hello Guys: I am having a problem with being able to double-click to open a new window. What I have: is a list of search results, broken down into an HTML...
Hello, I am writing a basket perl module that dynamically generates html/javascript. The amount of radio objects varies depending on a few conditions. I am...
not sure if this is what you're after and i'm betting its not the best way to go about it but it'll build a collection of all your radio buttons: function...
Presumably you know at execution time how many there are, so all you need is a way of dynamically constructing their names. Just use document.getElementById...
You can alternatively use the following, which prints to a textarea and needs NOT to give an id to the html tag as it seemed to me you preferred. From your...
Mike ... Certainly, people do it all the time. ... Not sure what you mean here. If it's automated, why have it at all? Do you mean that you want to assist...
I've a frameset containing 2 frames. In one of these (frame #1) there are dynamic generated links pointing to some web pages which should be displayed in the...
Hello all Once again I have to disturb you all... This time I am developing a Swing application in which I am using JComboBox I am not getting error message...
Thanks Carlos, I think this gets me an array of radio html elements, but not of DOM objects. I am trying to get an array of radio objects. I think I am going...
I'm not sure I follow - this builds an array of object references to all the radio buttons in your document. When you say "I am trying to get an array of...
... In general you cannot define a click and dblclick event on the same element because it's nearly impossible to find out what the user actually did. Even ...