[jQuery] Re: Text finder in html

2007-11-07 Thread syg6
Of syg6 Sent: Tuesday, November 06, 2007 9:02 AM To: jQuery (English) Subject: [jQuery] Text finder in html I am trying to create a javascript-based text finder using jQuery. I have a table like this: table id=dataTable tr td data 1 /td /tr tr td data 2 /td /tr

[jQuery] Text finder in html

2007-11-06 Thread syg6
I am trying to create a javascript-based text finder using jQuery. I have a table like this: table id=dataTable tr td data 1 /td /tr tr td data 2 /td /tr tr td data 3 /td /tr /table And I would like to be able to search for a text in any of the tds and highlight it. I

[jQuery] Re: multiple selects, hiddens and text inputs with same name

2007-10-08 Thread syg6
ids for elements on your page, do not rely on selecting them by $('#id')!) syg6-2 wrote: For reasons I won't go into here I have a page which has a table with a variable amount of rows. Each row has a hidden, text, and select. They all have the same name. I also have other

[jQuery] multiple selects, hiddens and text inputs with same name

2007-10-05 Thread syg6
For reasons I won't go into here I have a page which has a table with a variable amount of rows. Each row has a hidden, text, and select. They all have the same name. I also have other selects on the page with different names. What I need to do is access only the selects, to be able to add and

[jQuery] Re: val function for select with 'special character' not working

2007-10-01 Thread syg6
v1.2.1) select id='app.id' name='fred' option value='11'one/option option value='22' selected='selected'two/option /select var t = $('#app\\.id').val(); // t is 22 syg6-2 wrote: In the FAQ it says that if you have an element with a 'special character' in it you must escape

[jQuery] val function for select with 'special character' not working

2007-09-28 Thread syg6
In the FAQ it says that if you have an element with a 'special character' in it you must escape it. Fair enough. I have this select: select id='app.id' option... /select When I try the following: $(select#app\\.id).val() I get null. These don't work either: $(#app\\.id).val()

[jQuery] Re: appfuse: jQuery + scriptaculous + datePicker

2007-08-09 Thread syg6
to replace: $('.date-pick').datePicker({clickInput:true}); with: jQuery('.date-pick').datePicker({clickInput:true}); Hope that helps, Kelvin :) syg6 wrote: Thank you both, Kelvin and Klaus, for your replies. Yes, I saw that page and after a quick read decided (incorrectly

[jQuery] appfuse: jQuery + scriptaculous + datePicker

2007-08-08 Thread syg6
Hello all. I posted this over at Appfuse's Nabble list as first, but then thought this would be the better place. I have a default.jsp page that uses SiteMesh to 'decorate' all of my jsps. It contains the following js libraries: prototype.js scriptaculous.js global.js In order to use

[jQuery] Re: appfuse: jQuery + scriptaculous + datePicker

2007-08-08 Thread syg6
? Many thanks! Bob On Aug 8, 1:13 pm, Klaus Hartl [EMAIL PROTECTED] wrote: syg6 wrote: Hello all. I posted this over at Appfuse's Nabble list as first, but then thought this would be the better place. I have a default.jsp page that uses SiteMesh to 'decorate' all of my jsps. It contains