[jQuery] How to select every checkbox on my page inside a fieldset

2010-02-15 Thread ReynierPM
Hi: I have a fieldset and a set of check boxes inside. I want when I pick one, for example: input type='checkbox' id='pick_all' value='picked_all' / Pick all check boxes all the check boxes will be checked. How? -- Cheers ReynierPM

Re: [jQuery] How to select every checkbox on my page inside a fieldset

2010-02-15 Thread ReynierPM
On 2/15/2010 8:54 AM, Peter Edwards wrote: 2. a checkbox which uses a descendant selector $('#fieldset1 input:checkbox') to explicitly target a given fieldset by ID, and Thx a lot Peter, you and jQuery rocks. It works perfectly for descendant selector #fieldset1 ;) -- Cheers ReynierPM

[jQuery] Plugin to include HTML in a window

2010-02-09 Thread ReynierPM
Hi every: I want to show a HTML form in a window that I can move or close or minimize (I don't know what's the correct definition here). Exists any plugin for do this with jQuery? Any reference or tutorial or guide? -- Cheers ReynierPM

[jQuery] Rapid migration from ExtJS to jQuery

2010-02-05 Thread ReynierPM
Hi every: I have a application developed in ExtJS but my boss need all this migrate ASAP to jQuery, anybody here knows how? -- Cheers ReynierPM

[jQuery] jQuery and jCorner problems ($ is not a function)

2009-11-16 Thread ReynierPM
Hi every: I'm trying to use jCorner to get rounded effects in some of my DIV but when I run the page nothing happen and I get this error: $ is not a function [Break on this error] $().ready(function(){\n I've included jQuery and jCorner libraries as follow: script src=jquery.js

Re: [jQuery] Why this code don't work

2009-11-04 Thread ReynierPM
? Cheers -- Saludos ReynierPM

Re: [jQuery] Why this code don't work

2009-11-03 Thread ReynierPM
? 2) The fields are added just behind the SUBMIT button, how I can add just between the first field and the submit button? Cheers and thanks in advance -- Saludos ReynierPM

Re: [jQuery] Why this code don't work

2009-11-03 Thread ReynierPM
shall some day die, which is not so. On Wed, Nov 4, 2009 at 8:46 AM, Dhruva Sagar dhruva.sa...@gmail.com wrote: Thanks a lot, I made some improvements to your code because I'm using a table now but it works perfectly. -- Saludos ReynierPM

[jQuery] Why this code don't work

2009-11-02 Thread ReynierPM
:/label input type=text name=word id=word value= size=50 / a href=# id=anotherAdicionar criterio/a But for some reason when I click the link it doesn't work. Can any help me to fix this? -- Cheers ReynierPM

Re: [jQuery] Why this code don't work

2009-11-02 Thread ReynierPM
Dhruva Sagar wrote: You should be doing $('#word').after('label for=word2/labelinput type=text name=word2 id=word2 value= size=50 /'); This doesn't work too. I try and get none HTML input added after input#word. Why? -- Saludos ReynierPM

Re: [jQuery] Why this code don't work

2009-11-02 Thread ReynierPM
will be: word1, word2, wordn Thanks -- Saludos ReynierPM

Re: [jQuery] Why this code don't work

2009-11-02 Thread ReynierPM
Sagar. Joan Crawfordhttp://www.brainyquote.com/quotes/authors/j/joan_crawford.html - I, Joan Crawford, I believe in the dollar. Everything I earn, I spend. On Tue, Nov 3, 2009 at 9:08 AM, ReynierPM rper...@uci.cu wrote: Thanks a lot, it works perfectly -- Saludos ReynierPM

[jQuery] Prevent key to change values

2009-10-25 Thread ReynierPM
to avoid this? See online at http://jose-couto.com/pintpal4/order_pintpal2.html Cheers and thanks in advance -- ReynierPM

[jQuery] Re: Update element when changes

2009-10-23 Thread ReynierPM
-- Saludos ReynierPM

[jQuery] jQuery Plugin - validate always send the page

2009-10-23 Thread ReynierPM
? Cheers and thanks in advance [1] http://jose-couto.com/pintpal4/order_pintpal.html [2] http://bassistance.de/jquery-plugins/jquery-plugin-validation/ -- Saludos ReynierPM

[jQuery] Update element when changes

2009-10-22 Thread ReynierPM
($(this).val() * 2.75); }); What I'm doing wrong -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread ReynierPM
Ghprod wrote: Hi ... if u work with newer version of jquery, maybe u'll change $ into jQuery :) With newer version you mean 1.3.2? Hope it helps :) regards -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread ReynierPM
/order_pintpal.html. Thanks for all the help and the time -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread ReynierPM
rupak mandal wrote: change the id of lastname of billing information to billing_last_name Thanks a lot, that was the mistake. Now it works -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread ReynierPM
check when the checkbox is checked or not? Cheers -- ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread ReynierPM
ReynierPM wrote: rupak mandal wrote: I have another question related to this. How can I clear the fields if I uncheck the checkbox? I mean when marked fill fields as I do until now and when unmarked empty those fields? How can I check when the checkbox is checked or not? Cheers Reply

[jQuery] Help validating form

2009-10-20 Thread ReynierPM
this problems? I can't find where the problems are located!!! :( Cheers and thanks in advance [1] http://jose-couto.com/pintpal4/order_pintpal.html -- Saludos ReynierPM

[jQuery] Copy content from one field to another

2009-10-19 Thread ReynierPM
the checkbox the content from User1_Name is copied to User2_Name and so on. Can any help me do this? Cheers and thanks in advance -- ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
for=first_name1Middle Name: input type=text name=first_name1 id=first_name1 value= size= //label JS Code: function doCopy(){ $(first_name1).val($(first_name).val()) } Where is the error? -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
working -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
Bi Jing wrote: Sorr, I made mistake, there are two wrong coding No.1, onclick=doCopy() No.2, $(#user2_name).val($(#user1_name).val()) On Tue, Oct 20, 2009 at 10:28 AM, ReynierPM rper...@uci.cu wrote: Nothing still not working -- Saludos ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
ReynierPM

[jQuery] Re: Copy content from one field to another

2009-10-19 Thread ReynierPM
Conrad Cheng wrote: install firebug in your ff and you can see your js errors I have installed but can't find where to see errors -- Saludos ReynierPM

[jQuery] Get parameters from URL

2009-10-17 Thread ReynierPM
with jQuery. Can any body guide me on this? Cheers and thanks in advance -- ReynierPM

[jQuery] Re: Get parameters from URL

2009-10-17 Thread ReynierPM
at 10:41 AM, ReynierPM rper...@uci.cu wrote: Thanks a lot it was a nice documentation. -- Saludos ReynierPM