Hello everyone!! I am new at this group and I have a question for you. I have to build a web page that allow to the user to browse his own disk for a flatfile...
Hello everyone, I am new on this group and I have a question for you. I need to develop a simple web page that allow the user to make a browser (on his/her...
... Can't be done. Javascript by itself cannot access files and read their contents. There a hack in IE which uses ActiveX which may let you do what you...
The <a href=...> tag DOES support onClick (see http://www.w3schools.com/js/js_obj_link.asp). An example: <a href="abc.def" onClick="javascript:alert('An...
Thanks for the link! Not for the problem itself, however, it looks like a terrific resource when stranded on an island - with internet access :) Cheers, ...
DHTML Visibilty help I would like some dhtml help. I want offer 3 radio buttons that would control a dynamic area of text on the screen according to which...
Hi, You can do this by saying either: var myElement = document.getElementById('myElement'); myElement.style.visibility = 'hidden'; myElement.style.visibility =...
using visibility would complicate it for u...not that it cant work........but it is easier to use the innerText property. so u set the text u one in an arry...
Hi, I have an .aspx page which has vertical and horizontal navigation. This page has an iFrame which is really the main content frame. How can I raise ...
Hi, I have a DIV which contains a table, which contains a row, which contains a column. <div id='myDiv'> <table> <tbody> <tr> <td> Is there a better way of...
Hi all, I am writing a cross-browser(i.e. 6 and netscape 7.1) javascript program to save an XML file to local file system. I have an xml string like below: var...
I largely agree with Garvin's concept, but there are some problems with the implementation: 1. innerText is proprietary to MSIE only (there is a way to add...
*looks embarrassed* I should really have my first coffee of the day BEFORE posting code -- really helps cut down on those typos. ;) This actually works, and is...
thanks alot jon....i knew someone would get the idea and correct me....i dont agree with you on one thing though..... jon says: I believe that document.write()...
Hello everyone, I am still externally green to most of web development. What I am looking to do is to create a self updating page via use of a form. I want to...
... You need something which is server-side. The first thing you need to do is ask your hosting provider which server-side languages they support. Some...
But the fact that the values aren't contained within the function itself makes it more portable. I guess I'm thinking more in terms of a scenario like this...
Hi Garvin, Actually I wasn't referring to hard-coding the markup. There are at least two other alternatives. Using a 10x10 table as an example: 1. Do it on the...
Hi all, Maybe someone here can answer my question. (I may have missed something somewhere, but so far I haven't found anything with LOTS of searching.) ...
oh thank you very much man.........those two examples will come in very handy for me in the future.....:) so i have to disagree with you to get good stuff out...
The <label> tag will not work. It is meant to associate label information with a form <input> item, NOT to be a link a la the <a href> tag. See it's definition...
One thing that drives me nuts about PayPal is that the session times out really quickly if you are idle. As long as you are doing something you can stay logged...
Are you actually trying to call this as document.forms.submit() ? submit() is a method of a single form object, not of the forms collection. e.g. <form...
I see nothing wrong with Lázaro's suggestion -- perhaps you're taking the "link" part too literally? ;) My sense was that the original question was focused on...
Jon, thanks for your reply. I may have just resolved the issue, but will have to wait until Monday when I can verify on clients' pc. As to your question, no,...