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 radio button they chose. ...
Michael - give this a try. Rob. <html> <script> function showtext(value) { alert("You selected button " + value); if (value == "1") TextBox1.innerHTML = "This...
Hello, I have newly uploaded an old set of tutorials to: http://www.trans4mind.com/personal_development/JavaScript2/index.html I will add other tutorials,...
Good morning/ Good Afternoon I am first time user of Javascript , however, I am trying to create a interactive form in my website, but i am facing some...
Shaunett - could you send us your current page with a description of what you want to do. We can then guide you through adding the JavaScript code. Robert. ......
Hi everyone I'm not a programmer but need some help with designing a math program for some of my students. I did the pseudocode, can you help with designing...
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...
Cait - you could possibly use 'childname.formname.submit()' if you can find a button that doesn't do anything. I don't know which page your trying to refresh,...
There is a JavaScript course being taught at the Eclectic Academy which focuses upon design based interactivity and graphics. If this is something of interest...
I'm just starting out writing a simple program and having trouble running it. I believe it may be the set up, but not sure. what does this error message mean?...
I have a form I'm creating where the user enters address information a lot (think of a work application home addresses and past work addresses). Anyway, what I...
Can you clarify what you are trying to do? Are you saying you want multiple lines automatically generated, like this :- EmployerState1 City: State: Zip:...
im looking for a collapsable menu like www.ixnk.co.uk/leistritz , to: 1. work with different versions of ie(5 and 6) 2. have buttons next to the words, and...
Simeon Eleftheriadis
simos@...
Jun 17, 2004 7:20 am
1295
Simeon - not quite what you're after, but this one's quite good :- http://webdeveloper.earthweb.com/repository/javascripts/2002/03/76471/dropdow nmenu.htm The...
I am posting this becasue I think this article will benefit many people. I have posted this article in its entirety and unmodified, with respecting all...
As Atkinson said, this is a JavaScript thingo. This is also for all those who ask doubts about JSP and Server Side not related to JavaScripting. And about...
I have hyperlink, <a class='navbar' href="http://my.calendars.net/colchestercamra/">Diary</a>, that points to a calendar. What I want to be able to do is jump...
Hi , I have stucked with a simple prob in java script. I put a alert button in prgm and after clicking that , the prgm should stop flowing. I my prgm after...
Arvind - all you need to do is put a 'return false' in :- if (first.R1C3_HOURS.value<0 || first.R1C4_HOURS.value<0) { alert("cannot be negetive"); return...
Hi Arvind, try ...... one thing keep the statement as if ((first.R1C3_HOURS.value<0) || (first.R1C4_HOURS.value<0)) ... From: "arvind arakotaram jayanth"...
Vaishali s
vaishalis@...
Jul 12, 2004 8:07 am
1303
Razee, Thanks for your assistance, I will sign up with a Java group and rejoin this one when I take Javascript classes. Kate Razee Marikar...
Hi Kate, It sounds as though you are trying to compile a program which is something other than a .java file. You talk about the language JavaScript which of...
Terence Bunch
terencebunch@...
Jul 13, 2004 11:37 am
1305
Hi All, I am in trouble. We have developed a web site. It is working fine on Internet Explorer. Website uses HTML, ASP, OO4O for Oracle Database. Problem is...
Does anyone know how to replace <a href="url" target="_blank"> with window.open, keeping the window settings the same, i.e. same size, same toolbars, etc. I've...
I thought "_blank" was a new window setting ... From: Atkinson, Robert [mailto:ratkinson@...] Sent: Tuesday, July 13, 2004 10:29 PM To: 1stJavaScript...
OK - think I've sussed it... If you specify anything in the 'features' (window.open(URL, name [, features]) parameter, then "_blank" is ignored. Rob. ... ...