Search the web
Sign In
New User? Sign Up
JavaScript_Official · JavaScript . AJAX . ActionScript
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 13073 - 13102 of 16808   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13073
If all you want is the form to be emailed to you then you don't need the processform.php. I don't remember exactly but in the action property I think you just...
Marion Smith
marionsmith_98
Offline Send Email
Mar 1, 2006
5:17 pm
13074
Jen, Try this link out. And try posting this in a PHP list, this one is for Javascript only. http://us2.php.net/manual/en/function.mail.php Thanks -Nick ... ...
Nick Jones
nickj6282
Offline Send Email
Mar 1, 2006
5:18 pm
13075
This is not a difficult task. Below is some sample code: Hope this gives you what you need. Michael Pakay pakaymc@... ___ Start Of Code for...
MichaelPakay
pakaymc
Offline Send Email
Mar 1, 2006
9:32 pm
13076
1. The topic doesn't describe the task. You're not creating a form, you're generating an email based on form data. You can't produce a solution if you're not...
Jon Stephens
jdwayside
Offline Send Email
Mar 2, 2006
6:02 am
13077
I considered avoiding the PHP option by using the "mailto:name@..." option. However, does this allow me to add a redirect link that customers will be...
neilsbohr73
Offline Send Email
Mar 2, 2006
5:17 pm
13078
I am displaying and printing a PDF file that is generated by my Application server. The print dialogs comes up correctly for the small PDF for the larger PDFs...
jkamaraj
Offline Send Email
Mar 2, 2006
7:07 pm
13079
Pessoal, como verifico se uma data tal esta ha mais de 3 meses? SELECT minha_dta FROM minha_tabela WHERE minha_data ??????????????????...
Fernando (UK)
fernandosouz...
Offline Send Email
Mar 2, 2006
7:08 pm
13080
Have you tried not to JavaScript the pdf file?. The browser status is complete when all the html code (including JavaScript) is retrieved but not if the code...
Jose Luis Leviaguirre
jleviaguirre1
Offline Send Email
Mar 2, 2006
7:33 pm
13081
Fernando, En ingles, por favor. --Tim Sabin...
Tim Sabin
timsabin
Online Now Send Email
Mar 2, 2006
7:34 pm
13082
I am so sorry, that was to another list. I am really sorry....
Fernando (UK)
fernandosouz...
Offline Send Email
Mar 2, 2006
10:01 pm
13083
Or better: En Ingres, faz favor (in my best Portuguese). Maarten...
maartenvanthiel
Offline Send Email
Mar 2, 2006
10:01 pm
13084
Hello All, I am developing a HTML page to extarct and insert DB2 records. I am using Javascript to drive the process. I have SQL script templates built...
Moorthy Manickam
vmoorthy3
Offline Send Email
Mar 3, 2006
12:10 am
13085
In Brasilian portugues at least Ingles is correct. ... -- Jonathan Berry, M.A. IT Consultant 619.306.1712(m) jcharlesberry@... www.mindarc.com ... This...
Jonathan Berry
jcharlesberry
Offline Send Email
Mar 3, 2006
12:10 am
13086
Hello all, I have an update on this problem. We have yet another problem on our site ( ...
Jonathan Berry
jcharlesberry
Offline Send Email
Mar 3, 2006
12:11 am
13087
Thanks. I tried the following. The print dialog is never invoked if do not have the print call in onLOad. I do not know why? <html> <Head> <script> </script> ...
kamaraj jawahar
jkamaraj
Offline Send Email
Mar 3, 2006
12:11 am
13088
<html> <body onload=printNow()> <script> function printNow(){ var x = document.getElementById("PDF"); x.click(); x.setActive(); x.focus(); x.print(); ...
Jose Luis Leviaguirre
jleviaguirre1
Offline Send Email
Mar 3, 2006
2:18 am
13089
Hi, Is it posible for me to execute an application on client side? If so please let me knwo the function to be invoked. For example: on click of the button I...
vinaysimha79
Offline
Mar 3, 2006
4:40 pm
13090
hi i am creating a utility which seems alike scroll bar ,can anybody told me what is the event by which i can drag scroll tab up and down?and it should be...
deepak pal
deepak_javas...
Offline Send Email
Mar 3, 2006
4:41 pm
13091
Thank you. I will try this and let you know the result. Regards. Raj...
jkamaraj
Offline Send Email
Mar 3, 2006
4:41 pm
13092
Why do you want to do that??? In Windows, client computer must have risky ActiveX options enabled. I am not quite sure that "windows scripting host" is the...
Jose Luis Leviaguirre
jleviaguirre1
Offline Send Email
Mar 3, 2006
9:14 pm
13093
I have this regexp working ok but I need to validate it to *not* have more than 5 numbers. var validScreenName = /^[^0-9][A-Za-z0-9_.]{5,26}$/; What must be...
java_developer
Offline
Mar 3, 2006
9:24 pm
13094
Hi all, I was wondering if anyone could answer a few questions about using javascript with firefox. I'm a beginner at all of this. Overall, most things seem...
larryvolz
Offline Send Email
Mar 3, 2006
9:24 pm
13095
Hi all I need to do something like this: I have a text field where the user will type some text, as it might be in Brazilian language he can type some...
Fernando (UK)
fernandosouz...
Offline Send Email
Mar 3, 2006
9:24 pm
13096
Why do I get this error when I try to scroll an external iframe but not with an internal one? <html> <body> <iframe id="ifrmA" width="320" height="320"...
Jose Luis Leviaguirre
jleviaguirre1
Offline Send Email
Mar 3, 2006
9:34 pm
13097
This approach would not work for key combination characters such as é or õ <input id="myTxt" onkeyup="replacechars()" /> <script> function replacechars(){ ...
Jose Luis Leviaguirre
jleviaguirre1
Offline Send Email
Mar 3, 2006
10:24 pm
13098
if you want to use characters that require a combination of keys, use the onkeypress event instead. ... From: JavaScript_Official@yahoogroups.com...
Jose Luis Leviaguirre
jleviaguirre1
Offline Send Email
Mar 3, 2006
10:28 pm
13099
This may be close to what you are asking for. <input type="text" name="TheField" onkeyup="JavaScript:ReplaceText();"> <script language="JavaScript"> function...
soren.j.winslow@...
sorenwinslow
Offline Send Email
Mar 3, 2006
10:54 pm
13100
Fernando, It can get very tricky when different page encoding. You will need to use Unicode and regular expressions. Assuming that you have Latin-1 page...
Jose Luis Leviaguirre
jleviaguirre1
Offline Send Email
Mar 4, 2006
1:00 am
13101
... So you're saying that you want: 1. Length of string is 5-27 characters. 2. String may include letters, digits, and the the underscore and period...
Jon Stephens
jdwayside
Offline Send Email
Mar 4, 2006
1:30 am
13102
Plugins and Java applets, maybe. But you're not touching any of my native executables. ... -- This message has not been scanned for viruses. Since I do not use...
Jon Stephens
jdwayside
Offline Send Email
Mar 4, 2006
1:39 am
Messages 13073 - 13102 of 16808   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help