Re: [PHP] jquery fill select option value

2013-09-22 Thread Ashley Sheridan
iccsi inu...@gmail.com wrote: select id=mark name=mark option value=--/option option value=bmwBMW/option option value=audiAudi/option /select I use above code to have my select drop down on the form and would like to use jQuery to fill option value on change event. I would like know is

Re: [PHP] jquery fill select option value

2013-09-22 Thread Jim Giner
On 9/22/2013 3:52 AM, Ashley Sheridan wrote: iccsi inu...@gmail.com wrote: select id=mark name=mark option value=--/option option value=bmwBMW/option option value=audiAudi/option /select I use above code to have my select drop down on the form and would like to use jQuery to fill

Re: [PHP] jquery fill select option value

2013-09-22 Thread Tedd Sperling
On Sep 21, 2013, at 9:06 PM, iccsi inu...@gmail.com wrote: select id=mark name=mark option value=--/option option value=bmwBMW/option option value=audiAudi/option /select I use above code to have my select drop down on the form and would like to use jQuery to fill option value on change

Re: [PHP] jquery fill select option value

2013-09-22 Thread Jim Giner
On 9/22/2013 12:04 PM, Tedd Sperling wrote: On Sep 21, 2013, at 9:06 PM, iccsi inu...@gmail.com wrote: select id=mark name=mark option value=--/option option value=bmwBMW/option option value=audiAudi/option /select I use above code to have my select drop down on the form and would like to use

Re: [PHP] jquery fill select option value

2013-09-22 Thread Tedd Sperling
On Sep 22, 2013, at 12:47 PM, Jim Giner jim.gi...@albanyhandball.com wrote: On 9/22/2013 12:04 PM, Tedd Sperling wrote: On Sep 21, 2013, at 9:06 PM, iccsi inu...@gmail.com wrote: select id=mark name=mark option value=--/option option value=bmwBMW/option option value=audiAudi/option

[PHP] jquery fill select option value

2013-09-21 Thread iccsi
select id=mark name=mark option value=--/option option value=bmwBMW/option option value=audiAudi/option /select I use above code to have my select drop down on the form and would like to use jQuery to fill option value on change event. I would like know is it possible to do, if yes, any hint

Re: [PHP] jQuery to PHP

2011-06-23 Thread Tim Streater
On 23 Jun 2011 at 14:56, Ethan Rosenberg eth...@earthlink.net wrote: At 05:21 PM 6/22/2011, you wrote: 2) Instead of doing alert(yippee), seems to me you should alert on the results of the ajax call. I don't know how you get at those with jquery, but I imagine that is where you'll find the

Re: [PHP] jQuery to PHP

2011-06-22 Thread Tim Streater
On 22 Jun 2011 at 19:44, Ethan Rosenberg eth...@earthlink.net wrote: I have a PHP program which will generate a chess board with a form in the program. I wish to fill the form by clicking one of the squares in the chess board. I am trying to use jQuery and Aja to do this. The Ajax call

Re: [PHP] jQuery to PHP

2011-06-22 Thread Jim Lucas
On 6/22/2011 12:43 PM, Tim Streater wrote: On 22 Jun 2011 at 19:44, Ethan Rosenberg eth...@earthlink.net wrote: I have a PHP program which will generate a chess board with a form in the program. I wish to fill the form by clicking one of the squares in the chess board. I am trying to use

Re: Re: [PHP] jQuery to PHP

2011-06-22 Thread Tim Streater
On 22 Jun 2011 at 20:56, Jim Lucas li...@cmsws.com wrote: On 22/6/2011 12:43 PM, Tim Streater wrote: On 22 Jun 2011 at 19:44, Ethan Rosenberg eth...@earthlink.net wrote: I have a PHP program which will generate a chess board with a form in the program. I wish to fill the form by clicking

Re: Re: Re: [PHP] jQuery to PHP

2011-06-22 Thread Tim Streater
On 22 Jun 2011 at 21:56, Ethan Rosenberg eth...@earthlink.net wrote: At 04:30 PM 6/22/2011, you wrote: On 22 Jun 2011 at 20:56, Jim Lucas li...@cmsws.com wrote: So the OP is using the form's action to reload the page, and seemingly making an ajax call under some circumstance that will also

Re: [PHP] Jquery

2011-02-21 Thread Adam Richardson
On Mon, Feb 21, 2011 at 7:56 AM, Ellis Antaya ellis.ant...@gmail.comwrote: Hi, first, like everyone else before me told already, you forgot to load jquery in your page. Example : script type=text/javascript src= http://code.jquery.com/jquery-1.5.min.js /script Also, i would change your

Re: [PHP] Jquery

2011-02-15 Thread David Harkness
I see firebug-lite-debug.js but not jquery.js. Does firebug include jquery? David

[PHP] jquery password problem

2010-05-14 Thread Manolis Vlachakis
I encode my password with md5 base 64 ..on the php side but i have a problem with the POST that this function i using on my form. after posting my data + is replaced with space I came out with that explanation after a lot of tries and echos in my code files i found out that after using numbers

Re: [PHP] jquery password problem

2010-05-14 Thread Karl DeSaulniers
On May 14, 2010, at 4:01 AM, Manolis Vlachakis wrote: I encode my password with md5 base 64 ..on the php side but i have a problem with the POST that this function i using on my form. after posting my data + is replaced with space I came out with that explanation after a lot of tries and

Re: [PHP] jquery password problem

2010-05-14 Thread Peter Lind
On 14 May 2010 11:29, Karl DeSaulniers k...@designdrumm.com wrote: On May 14, 2010, at 4:01 AM, Manolis Vlachakis wrote: I encode my password with md5 base 64 ..on the php side but i have a problem with the POST that this function i using on my form. after posting my data + is replaced with

Re: [PHP] jquery password problem

2010-05-14 Thread Karl DeSaulniers
On May 14, 2010, at 4:38 AM, Peter Lind wrote: On 14 May 2010 11:29, Karl DeSaulniers k...@designdrumm.com wrote: On May 14, 2010, at 4:01 AM, Manolis Vlachakis wrote: I encode my password with md5 base 64 ..on the php side but i have a problem with the POST that this function i using on my

Re: [PHP] jquery password problem

2010-05-14 Thread Manolis Vlachakis
i uses str_replace finally and it works.. but still i would like to know how this problem comes up cause i would like to be sure on whatever password is going to be used weather that is a number a letter or a combination of those two any ideas, oh and thank you for your replies ! Manolis

Re: [PHP] jquery password problem

2010-05-14 Thread Ashley Sheridan
On Fri, 2010-05-14 at 16:16 +0300, Manolis Vlachakis wrote: i uses str_replace finally and it works.. but still i would like to know how this problem comes up cause i would like to be sure on whatever password is going to be used weather that is a number a letter or a combination of those two

RE: [PHP] jquery password problem

2010-05-14 Thread Bob McConnell
From: Manolis Vlachakis i uses str_replace finally and it works.. but still i would like to know how this problem comes up cause i would like to be sure on whatever password is going to be used weather that is a number a letter or a combination of those two any ideas, You probably should

Re: [PHP] jquery password problem

2010-05-14 Thread Peter Lind
On 14 May 2010 15:16, Manolis Vlachakis vlachakis.mano...@gmail.com wrote: i uses str_replace finally and it works.. but still i would like to know how this problem comes up cause i would like to be sure on whatever password is going to be used weather that is a number a letter or a

Re: [PHP] jquery password problem

2010-05-14 Thread Manolis Vlachakis
sorry for the off topic it is true that it turned out to be clearly a JS script problem ... thanks again for the replies problem solved then.. On 14 May 2010 16:23, Peter Lind peter.e.l...@gmail.com wrote: On 14 May 2010 15:16, Manolis Vlachakis vlachakis.mano...@gmail.com wrote: i uses

[PHP] JQuery issue

2010-02-12 Thread Devendra Jadhav
Hi All, Sorry for asking question at wrong place.. (Please tell me where to as questions about JQuery) I am using JQuery Validate plugin. I am validating form which contains two items Name phone number Phone number contains three text boxes. Now the default behavior of JQuery Validate put error

Re: [PHP] JQuery issue

2010-02-12 Thread Ashley Sheridan
On Fri, 2010-02-12 at 17:09 +0530, Devendra Jadhav wrote: Hi All, Sorry for asking question at wrong place.. (Please tell me where to as questions about JQuery) I am using JQuery Validate plugin. I am validating form which contains two items Name phone number Phone number contains three

RE: [PHP] JQuery issue

2010-02-12 Thread Jay Blanchard
[snip] Sorry for asking question at wrong place.. (Please tell me where to as questions about JQuery) [/snip] Google is your friend http://docs.jquery.com/Discussion#Official_Forums -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] JQuery issue

2010-02-12 Thread Devendra Jadhav
thank you all On Fri, Feb 12, 2010 at 5:54 PM, Jay Blanchard jblanch...@pocket.comwrote: [snip] Sorry for asking question at wrong place.. (Please tell me where to as questions about JQuery) [/snip] Google is your friend http://docs.jquery.com/Discussion#Official_Forums --