Re: [PHP-WIN] javascript :close()

2007-05-31 Thread Stut
chandar wrote: I have a webpage with frames,i have provided a link and when the user clicks the link i am closing the window. For closing i am using javascript:window.close(); when i click the link in IE i get a command window telling you are going to close this window. Is there anyway to supr

Re: [PHP-WIN] Javascript email group

2007-04-26 Thread Mikael Grön
Nice! Thanks Alf Stockton skrev: For those looking for a javascript email group you may want to look at:- http://magnumip.co.za/cgi-bin/mailman/listinfo/webdev Do remember that this is not just javascript but also includes "all the questions they were too afraid to ask about web development (i

Re: [PHP-WIN] Javascript partially not working

2007-04-24 Thread bedul
>>document.getElementById("Issue").disabled i must see the html result i believe u have error on your html not on the js for example form if you not declare a form name u can't change issue?? can u send to us again with the htm .. and since htm kinda danger to share, would you change the extensi

Re: [PHP-WIN] Javascript partially not working

2007-04-24 Thread Mikael Grön
I actually started looking for one myself, right after I mailed. Haven't found any good ones yet. I'll let you know when I do. Chandar and Bill: I don't like forums. I enjoy using Thunderbird too much. Mike Alf Stockton skrev: Mikael Grön wrote: Alf, it has already been pointed out that this

RE: [PHP-WIN] Javascript partially not working

2007-04-24 Thread Bill Bolte
http://www.sitepoint.com Their forums are pretty good. Bill -Original Message- From: Alf Stockton [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 24, 2007 8:33 AM To: Mikael Grön Cc: php windows Subject: Re: [PHP-WIN] Javascript partially not working Mikael Grön wrote: > Alf, it

Re: [PHP-WIN] Javascript partially not working

2007-04-24 Thread chandar
Devshed Forums wil be good[http://forums.devshed.com/] thnx/Chandar Alf Stockton wrote: Mikael Grön wrote: Alf, it has already been pointed out that this list is for PHP. That the JavaScripts are supposed to run on a page generated from PHP isn't enough to make it PHP related. Please register t

Re: [PHP-WIN] Javascript partially not working

2007-04-24 Thread Alf Stockton
Mikael Grön wrote: Alf, it has already been pointed out that this list is for PHP. That the JavaScripts are supposed to run on a page generated from PHP isn't enough to make it PHP related. Please register to a JavaScript list and ask your question about JavaScript there. Any suggestions as

RE: [PHP-WIN] Javascript partially not working

2007-04-24 Thread Gustav Wiberg
I agee to Mikaels Gröns comment about Javascript But just for helping out a bit If it is about Javascript and nothing below a certain line works, then it is THAT line that is wrong... document.getElementById("MemberName").innerHTML = ""; Best regards /Gustav Wiberg -Original Message-

Re: [PHP-WIN] Javascript partially not working

2007-04-24 Thread Mikael Grön
Alf, it has already been pointed out that this list is for PHP. That the JavaScripts are supposed to run on a page generated from PHP isn't enough to make it PHP related. Please register to a JavaScript list and ask your question about JavaScript there. Mike Alf Stockton skrev: I include the

Re: [PHP-WIN] Javascript

2007-04-23 Thread Mikael Grön
Isn't it so that HTML tags that are coupled (like and ) have innerHTML, and that values pushed to their innerHTML ends up within them? Like [innerHTML] Just a thought.. No energy for Google! right now. Mike Stut skrev: Alf Stockton wrote: Please tell the difference between:- docume

Re: [PHP-WIN] Javascript

2007-04-23 Thread Stut
Alf Stockton wrote: Please tell the difference between:- document.getElementById("Amount").innerHTML = " "; and document.getElementById("Amount").value = " "; Not all DOM objects have an innerHTML attribute, and likewise not all of them will have a value attribute. For example, and have inn

RE: [PHP-WIN] JavaScript with parameters

2007-01-29 Thread Bill Bolte
Pass the id through to the JS function using a JS onClick event. Ie: XX -Original Message- From: Alf Stockton [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 6:25 AM To: php windows Subject: [PHP-WIN] JavaScript with parameters How do I complete a command to be issued by Jav

RE: [PHP-WIN] javascript in php

2002-06-12 Thread Dash McElroy
Sounds like you may have missed a \ on a quote or something. Can you supply the code? -Dash -Original Message- From: prachi shroff [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 12:39 PM To: php php Subject: [PHP-WIN] javascript in php Hi! I have this HTML form and its va

RE: [PHP-WIN] Javascript

2001-05-03 Thread Dickerson, Monty
John, ?: are you setting a Content-type header in your php script which outputs text/javascript > -Original Message- > From: Ignatius Teo [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 02, 2001 10:45 PM > To: 'John'; [EMAIL PROTECTED] > Subject:

RE: [PHP-WIN] Javascript

2001-05-02 Thread Ignatius Teo
This may seem like silly questions, but… 1. Have you configured your web server to handle php scripts? 2. Are you able to run php scripts normally? 3. Does your script return valid javascript code? Ignatius -Original Message- From: John [mailto:[EMAIL PROTECTED]] Sent:

Re: [PHP-WIN] Javascript

2001-03-30 Thread Tom Mathews
Thanks all, I was trying the . operator as a concatenator before - must have got my languages mixed up! Tom Tom Mathews wrote: > Window(IDent) > { > >msgWindow=window.open("ContentsWindow.php3?ID=IDent","displayWindow","menubar=no,width=500,height=300") > > } > > The IDent that is passe

RE: [PHP-WIN] Javascript

2001-03-29 Thread Michael Rudel
msgWindow=window.open("ContentsWindow.php3?ID="+IDent,"displayWindow","menubar=no,width=500,height=300") Greetinx, Mike > -Original Message- > From: Tom Mathews [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 29, 2001 6:05 PM > To: PHP Windows lista > Subject: [PHP-WIN] Javascript >

RE: [PHP-WIN] Javascript

2001-03-29 Thread Fernando Madruga
Have you tried the string concatenation operator? e.g.: msgWindow=window.open( "ContentsWindow.php3?ID=" . IDent, "displayWindow","menubar=no,width=500,height=300") I don't know if it's '.' or '&' or whatever: just check your docs on javascript and look for string concatenation. HTH, Madrug

Re: [PHP-WIN] JavaScript Help!

2001-03-15 Thread Marius Manolea
Hi, I had problems with dates and times too! Once, I managed to make it work and when I moved my app to another server It didn't work because of different locale settings. So here is my idea : leave the locale away, use some independent string dates! I will attach an example also