I need help in inserting javascript , I am using a hover button created from Front Page. Say I want to insert a click event, how do I do that? 'am a beginner,...
'' and "" are the same thing, just remember to use the same one to close your quotes that you did to open. A ; is ALWAYS required at the end of a statement (or...
<input type="button" onClick"doThis()"> <script language="JavaScript"> function doThis(){ alert("hello World"); } </script> Note: You can use the onClick event...
Leviaguirre Queral Jo...
JLEVIAGU@...
Apr 1, 2003 4:47 pm
6608
This should display the time with the Hour value going from Cyan to Red and the minute from Yellow to Blue. (Note use of RGB(rrr,ggg,bbb) form for color...
I am trying to create a form in which its attributes change depending on a drop down box. I am using Cold Fusion to populate the form...but I am familiar with...
cmvia
cvia@...
Apr 1, 2003 7:16 pm
6610
I just wanted to show you the code , how it is for a hover button when created in FP, so that you can help me better. <applet code="fphover.class"...
I need help on this: Anyone have a code, that would close the child window(s) on the parent window close ? ~GERRI~ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Cherry Pi: ...
msv(desygnz);
msv_desygnz@...
Apr 2, 2003 2:56 pm
6614
Hello, Would someone be able to verify for me the difference between using <input type="submit" value="My Label" onClick="DoMyFunction()"> OR <input...
danearga
danearga@...
Apr 2, 2003 7:45 pm
6615
... "button" is just what it says a button, then you can provide special javascript behind the handler. "submit" is a special type of button in where it ...
i dont get the point of the loop. since only one of the radios can be checked at a time.... i could understand for checkboxes... isnt there something like ...
you need to be more specific.. cause we need to know what to do after you unselect a radio. select another right?? ... ===== HTTP://SILASCO.PORT5.COM/TONES/ ...
I need help using javascript to create a photo gallery browser. I want to be able to open a single window with <Next> and <Prev> links to browse through each...
I know but the guy wants the option unchecked. As far as I understood, he want's the user to be able to select either from radios or combos. If user selects...
Leviaguirre Queral Jo...
JLEVIAGU@...
Apr 3, 2003 1:12 am
6620
Can I use javascript to access serial port(RS232) on the server side? Thanks for your help and time....
Hello, Thankyou Leviaguirre Queral José Luis for you help on the drop down. I have a new problem. I need some help with JavaScript validation the code...
Hello, Thankyou Leviaguirre Queral José Luis for you help on the drop down. I have a new problem. I need some help with JavaScript validation the code...
Hello, Thankyou Leviaguirre Queral José Luis for you help on the drop down. I have a new problem. I need some help with JavaScript validation the code...
Hello, Sorry about my post being posted three times, not sure how it happend i only clicked it once, if they can be removed please remove them. The code before...
function closeit{ window.close(); } will be enough Murat ... From: msv(desygnz); [mailto:msv_desygnz@...] Sent: Wednesday, April 02, 2003 6:01 PM To:...
javascript is for client side. you have to use JSP,ASP or similar server side languages. ... From: dccsd [mailto:dccsd@...] Sent: Thursday, April 03,...
function popup(a) { window.open(a," This is a new win ","width=400,height=550,resizable=no,status=no,scrollbars=no,left=100,top= 50 "); } Murat ... From:...
... Nope, javascript does not run on the server side, only client side. __________________________________________________ Do you Yahoo!? Yahoo! Tax Center -...
Yes it does. You can use JS just us you would use VBScript in the server side (called ASP) I dont think its possible to call the serial port in a language as...
Marcelo Rocha
murch@...
Apr 3, 2003 3:32 pm
6632
if you create a child window from parent, you can close it from parent. //create child window from parent myChildWindow = window.open(a," This is a new win...
Leviaguirre Queral Jo...
JLEVIAGU@...
Apr 3, 2003 4:20 pm
6633
... Wrong. It is not javascript, it is Microsoft's version called JScript, which is not the same as javascript. ...
Of course. JavaScript is from Netscape. JScript is from MS I never wrote JavaScript . I said JS that can be both of them And I think you understood me. Thanks...
Marcelo Rocha
murch@...
Apr 3, 2003 4:44 pm
6635
No, I mean when you close the parent window (on an unload, iin the body i guess) it closes the child windows that it opened. I know how to close the child...