[jQuery] How to Remove attached jQuery Plugin from element. (aqLayer Plugin)

2009-05-28 Thread GrootBaas
Hi everybody, Thanks for your help in advance ... I have attached and aqLayer to an element like such ... $('#prvt_days_cell').aqLayer({closeBtn:true}) .dblclick(function(){ $(this).aqLayer('Validation: If there is private kilometers, there must be private days.'); }); Now

[jQuery] Get selected column value ...

2009-04-07 Thread GrootBaas
Hi all, I am currently using var rego = $('.trSelected td:nth-child(3) div').text(); to get the 3 column value of the row that was selected. My problem is, when I drag the column to a new position, the value is no longer in column 3. How can I get around this issue? Thanks in advance for

[jQuery] Re: Get selected column value ...

2009-04-07 Thread GrootBaas
Hi Guys, OK, I can get the column value based on the index ... var index = $('.trSelected td:eq(1)').text(); but how do I get my index value, based on the attribute 'abbr' = 'contract' On Apr 8, 10:48 am, GrootBaas fj.lu...@gmail.com wrote: Hi all, I am currently using var rego

[jQuery] Re: class=\stripeMe\ gets removed after $(#quote_list).children().remove(); gets called

2009-02-23 Thread GrootBaas
Please Guys, I really need some help on this one! On Feb 23, 3:09 pm, GrootBaas fj.lu...@gmail.com wrote: Looking at the final result in real time may be helpful http://screencast.com/t/qiE8qcMoqY2 On Feb 23, 3:03 pm, GrootBaas fj.lu...@gmail.com wrote: Hi all, I would appreciate

[jQuery] class=\stripeMe\ gets removed after $(#quote_list).children().remove(); gets called

2009-02-22 Thread GrootBaas
Hi all, I would appreciate any information to help me solve this issue ... Thank you in advance fro your time ... I have a table in my view ... http://screencast.com/t/z9zFsVN2Bn Then, in my controller, I amend another table, and the table structure is as follows ...

[jQuery] Re: class=\stripeMe\ gets removed after $(#quote_list).children().remove(); gets called

2009-02-22 Thread GrootBaas
Looking at the final result in real time may be helpful http://screencast.com/t/qiE8qcMoqY2 On Feb 23, 3:03 pm, GrootBaas fj.lu...@gmail.com wrote: Hi all, I would appreciate any information to help me solve this issue ... Thank you in advance fro your time ... I have a table in my

[jQuery] Re: gettng value from radio buttons

2009-02-18 Thread GrootBaas
Thanks everybody ... This thread helped me as well. I LOVE OPEN SOURCE !

[jQuery] .hide() and .show(), will change the layout of my page...

2009-02-17 Thread GrootBaas
Hi jQuery, Could somebody please shed some light on this issue for me? .hide() and .show(), will change the layout of my page because when I .show() the elements, an element is created in a place where there was none.. I am no expert, but I think .show() change the CSS style from display:none

[jQuery] Re: .hide() and .show(), will change the layout of my page...

2009-02-17 Thread GrootBaas
Thanks Guys, it worked like a charm. The page layout does not change anymore.

[jQuery] .show() - moves my page down. Help please.

2009-01-29 Thread GrootBaas
Hi all, As soon as I show elements on my page, the whole page moves down. Could anybody please help me ? I am using IE6.1 This is my CSS ... #container{ position:static; height:630px; width:990px; margin:2px auto; padding:1px 0; text-align:left; background:#ff; color:#303030;

[jQuery] Re: Not Working for me

2009-01-29 Thread GrootBaas
We will be able to help much better if you post some code here for us to look at On Jan 30, 8:58 am, kevinsturf master...@gmail.com wrote: Ok, I got the js file and jquery file placed them on the webpage, gave my form an id exactly how the demo had it and still nothing, doesn't even work.

[jQuery] add a value to text field

2008-11-12 Thread GrootBaas
Hi all, This is a very junior question that I need help with please ... I use var start_odo = $(#end_odo+counter).val() to get the value of a text input. What statement would I use to assign the value start_odo to a text input. Thanks guys ...

[jQuery] Re: add a value to text field

2008-11-12 Thread GrootBaas
OK, no worries. I used this ... document.getElementById('start_odo11').value = start_odo; Thanks anyway. On Nov 13, 10:36 am, GrootBaas [EMAIL PROTECTED] wrote: Hi all, This is a very junior question that I need help with please ... I use var start_odo = $(#end_odo+counter).val

[jQuery] Read table values ...

2008-11-03 Thread GrootBaas
Hi there, I have the following table. And I need to save the user input to the database. How can I do this…. I have used jQuery DB class. var arr_value = new Array( $($('.odo').select('.prvt_days'))[0][0], $($ ('.odo').select('.prvt_days'))[0][1], $($('.odo').select('.prvt_days')) [0][2] );

[jQuery] Re: Read table values ...

2008-11-03 Thread GrootBaas
Reading the table fields I can do, but as soon as the TD element contains a input field, I am unable to read the cell value. Is there any other way of doing this? On Nov 4, 12:07 pm, GrootBaas [EMAIL PROTECTED] wrote: Hi there, I have the following table. And I need to save the user input

[jQuery] Re: reading values from HTML tables

2008-11-02 Thread GrootBaas
GrootBaas wrote: Hi all, Any help would really be much appreciated. I have a table, how can I read the cellvaluesof the table ... Currently I have ... function test () { var address; var i; for (i=1; idocument.getElementById('veh_odometer

[jQuery] Re: reading values from HTML tables

2008-11-02 Thread GrootBaas
the third TD in the context of the current row (this). Again, more than one way to do this... $(this).children(td:eq(2)) would do the same ( I think ). Anyways, hope that helps. Shawn On Thursday 30 October 2008 23:29:52 GrootBaas wrote: Hi all, Any help would really be much

[jQuery] Re: reading values from HTML tables

2008-11-02 Thread GrootBaas
the objects individual elements? Thanks so much for your help! On Oct 31, 6:04 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Here's an awesome jQuery plugin to handle HTML tables like relational databases:http://github.com/nkallen/jquery-database/tree/master --Klaus On 31 Okt., 06:29, GrootBaas [EMAIL

[jQuery] How to pass a jQuery object to PHP as an array

2008-11-02 Thread GrootBaas
Hi all, Thank you in advance for you help I have the following object ... console.log($('.users').select('.name')); How can I pass this object as an hidden form field back to my PHP controller as an array? Current code ... document.save_logs.table.value = value;

[jQuery] Re: autocomplete - other items on web page showing through autocomplete list. Only in IE6

2008-10-30 Thread GrootBaas
Hi Dan, Thank you for that insight. I will try it out... It all just seems a bit tedious. Do you have any idea why this happens? Regards, On Oct 31, 12:46 am, Dan Switzer [EMAIL PROTECTED] wrote: I would just like to thank you all in advance for taking time to help me. I am using ...

[jQuery] reading values from HTML tables

2008-10-30 Thread GrootBaas
Hi all, Any help would really be much appreciated. I have a table, how can I read the cell values of the table ... Currently I have ... function test () { var address; var i; for (i=1; idocument.getElementById('veh_odometer').rows.length; i++) {

[jQuery] autocomplete - other items on web page showing through autocomplete list. Only in IE6

2008-10-29 Thread GrootBaas
Hi all, I would just like to thank you all in advance for taking time to help me. I am using ... Autocomplete - jQuery plugin 1.0.2 Revision: $Id: jquery.autocomplete.js 5747 2008-06-25 18:30:55Z joern.zaefferer $ In IE7 and Mozilla, the autocomplete works fine. When I use IE6, the item