[jQuery] Re: 1.3.2 td class selector only picks the first td

2009-05-28 Thread tester
Try to switch off your validation plugin... jquery.validate.js

[jQuery] Re: Make li list of unique json data?

2008-12-19 Thread alpha tester
Thanks very much for this Brian - got my head round it now! brian-263 wrote: On Thu, Dec 18, 2008 at 4:49 AM, alpha tester david.oli...@rbs.co.uk wrote: Hmmm... struggling to read from this new dataset using the code provided - can someone point out the stupidity in the following

[jQuery] Re: Make li list of unique json data?

2008-12-18 Thread alpha tester
Amazing! Love the way you can take what was about 90 lines of javascript and turn it into about 5 of jquery and the jquery ends up being far more flexible! Thanks very much for your help! (do you know of any tutorials that cover this sort of dataset management stuff (push/group etc))

[jQuery] Re: Make li list of unique json data?

2008-12-18 Thread alpha tester
Hmmm... struggling to read from this new dataset using the code provided - can someone point out the stupidity in the following code: html head script type=text/javascript var myData = { records : [ { CATEGORY : Sport, TITLE : The world of sport, LINK: http://test.com; }, { CATEGORY :

[jQuery] Make li list of unique json data?

2008-12-17 Thread alpha tester
Hi I'm just learning JQuery and while I've got my head around the general concepts, the real power of the logic it provides is still escaping me. I've got a page with a JSON dataset like this: var myData = { records : [ { CATEGORY : Sport, TITLE : The world of sport, LINK: http://test.com;

[jQuery] Re: Referencing elements with 2 or more classes and no Id

2008-09-23 Thread Tester
-visibleUrl-, i.e. class=b-visibleUrl b-visibleUrl- short Is this line-break in your original HTML code? If so that might be the problem. On Tue, Sep 23, 2008 at 11:35 AM, Tester [EMAIL PROTECTED] wrote: Thanks for the suggestion! That's actually what I started with. While it's perfectly

[jQuery] Referencing elements with 2 or more classes and no Id

2008-09-22 Thread Tester
My code looks like this: div class=a-webResult a-result div class=b-webResult b-result div class=b-titleTitle/div div class=b-visibleUrl b-visibleUrl- shortwww.learningjquery.com/div div class=b-visibleUrl b-visibleUrl-longwww.learningjquery.com/

[jQuery] Re: Referencing elements with 2 or more classes and no Id

2008-09-22 Thread Tester
: Remember that jQuery uses CSS syntax for selectors. So, just like in CSS to select a element with a particular class you add a . to the front of the class name. In this case:   $('div.b-visibleUrl-short') Karl Rudd On Tue, Sep 23, 2008 at 11:25 AM, Tester [EMAIL PROTECTED] wrote: My code

[jQuery] how to get the height of a div?

2007-08-23 Thread tester
Hi, how I can get the height of a div? There is a div element in the xhtml DOM filled with dynamic content from a database. The height depends on the database content. I tried something like this: $('#divElem').height($ ('#divElem').getMaxHeight()); but it didn't work.