[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-19 Thread Graeme B. Davis
This plugin looks really cool! I found a small issue: If you load the page for the first time (in ff3) and just click on the blank area in the dropdown (instead of the down arrow) there is no animation when it expands down and the hierarchy arrows don't work when you use the mouse. If you then

[jQuery] Re: cluetip events

2007-11-19 Thread Graeme B. Davis
What if you want to make a cluetip sticky only when clicked, otherwise just show a normal cluetip? example: I want to show tips with content they can click (email addy, etc) if they want... but by default the cluetip should just go away if the mouse moves elsewhere (outside of the a href). I

[jQuery] Re: jQuery UI Datepicker v3.0 Released! (Previously named jQuery Calendar)

2007-11-01 Thread Graeme B. Davis
Is there a way to apply a style it so that it looks a bit better? Perhaps like this calendar I've been using on my sites for ~6yrs: http://www.ssw.com.au/ssw/Standards/DeveloperGeneral/Images/popupCalendar.gi f http://www.peterbe.com/plog/blogitem-20031017-1526/popwincal I like the jquery

[jQuery] contains() with a jquery object reference (form field)

2007-09-19 Thread Graeme B. Davis
I'm trying to highlight some rows of a table, and previously did this with the following code: $('#sqltable').find('td').contains($('#workgroup').val()).toggleClass(highl ight); The new code: $(#sqltable tr td:contains(TEXT TO SEARCH FOR HERE)).toggleClass(highlight); How do I specify