I am a javascript newbie, and apparently don't understand the scope of the DOM objects (which I thought were global?). Please look at the javascript and its...
Hi, I am working on an intranet and an from an asp page I am redirected to an auxiliary page that should simultaneously replace part of the current frameset...
hi friend, i infact not know actually what u want to know,but a define solution what i understand is this ... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01...
Hi, is there a way (and if so what would be the code) to disable the back button? Thanks a zillion for the help and Happy New Year to everyone. Andrea...
The problem is that, once the page has loaded, calling document.write() again destroys everything in the page. (Notice how the forms disappeared when you...
I think what might help you here is to learn about the Event object. ... -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version:...
Short version: No. Slightly longer version: Either open the page in a new window, or use self.location.replace() to load a new page in place of the previous...
I haven't found any clear way of doing it. U have to do it by some trick such as when user presses back then move him/her ahead. Another way of doing so is as...
Hi :-) Well, I have problem for getting the right distance between two elements in html. For example, I got element A and element B. Then....my script detect...
Hadi Ariwibowo
hadi_a@...
Jan 4, 2005 11:27 am
10400
Is there a way to have text next to a radio-button be bold, when clicked ? -Gerri-...
What am I doing wrong? Each of the calculators works fine without the other but together on one page I get an error. As far as I can see I have done...
Hi, I have a big suggestion, don't do it...my research here at a major university campus as well as other articles I have read is that it really makes the user...
I agree. It is a major no-no to fool around the user's browser in any way, including adding your site to the "Favorites" list, changing the window size or...
You have two functions called "calculate". You can only have one. In most programming language environments, this would produce an error. In JavaScript, your...
hello all, I have a string in which I know the index position of the character that needs to be replaced. (I can NOT just do a regex replace on the character,...
No, a string isn't really an array, and you won't be able to do that. If you know the index position, and you're only replacing one character, then an array is...
The problem has to do with your use of document.write from within the event handler. If you change your event code to: document.write("Number of forms from...
Hi for sure your code is faulty cause a string is not an array, there are many solutions... 1 - str="cat tow" var _str = str.split(""); _str[2] = "r"; str =...
Let me start off by saying I just started learning XML this evening, so I hope someone will have some patience with me. I found the following examples on a...
Hi all, i saw this website http://www.ianbritt.com/ within the gallery section.. you can place your mouse over a small jpeg and that jpeg appears as a large...
I can't tell you exactly how they did this, ( I would love to know how he hid his source code though! ) But it's more then possible, here's some basic...
The language you use shouldn't make much if any difference. In the case of MSXML, the DOM interfaces are available to VB and JS alike. I've also used it with...
Wow, thank you for the excellent response Jon! (Are you a teacher? If not you might want to consider it, you explained that so well that I figured out...
It's just done with simple onmouseover and onmouseout events in links which contain the thumbnails, e.g. <a href="#" onmouseover="changeImages('gallery_show',...
Hi, I would like to know if its possible to create a client-side flash rss reader that reads video enclosures. Is there an example of this? (with snippet of...
Covered up by images? Like the designer put the main code in the center frame then put the actual site code in a div over the frame(s) borders? That's pretty...
Hello there, I am to use a select/list on a web page and the client needs the appearance of it not the way it is. Though I have changed the back-color and...