[jQuery] Re: jQuery UI 1.6rc6 - how to sort tabular data?

2009-03-03 Thread Sam H
Sorry, just realized this may be misleading. jQuery UI "Sortable" allows you to REORDER items in a list. I am looking to have a user drag/reorder items in a table, basically. On Mar 3, 4:20 pm, Sam H wrote: > I know you can't actually sort tables, it's kinda broken.

[jQuery] jQuery UI 1.6rc6 - how to sort tabular data?

2009-03-03 Thread Sam H
I know you can't actually sort tables, it's kinda broken. I can easily sort UL lists, but whenever I try to use float: left and width: XXXem to give set widths to each span, e.g.: 32 Bob Jenkins #list li { clear: left; } #list li span { float: left; background: #ddd;

[jQuery] slideUp/Down jumpy in Firefox 3 but not in IE7?

2009-02-04 Thread Sam H
I don't remember if it was like this in jQuery 1.2, but I have 1.3.1 and I can clearly see that slideDown/Up is much smoother in IE7 than in Firefox 3. Is it just me?

[jQuery] Re: jQuery UI Dialog - how to hide 'X' close box?

2009-02-04 Thread Sam H
Perfect - thanks! On Feb 4, 10:32 am, "Richard D. Worth" wrote: > See this thread > > http://groups.google.com/group/jquery-ui/browse_thread/thread/9c8fbe3... > > for some examples. > > - Richard > > On Wed, Feb 4, 2009 at 11:24 AM, Liam Potter wrote: >

[jQuery] jQuery UI Dialog - how to hide 'X' close box?

2009-02-04 Thread Sam H
Is there any way with jQuery UI Dialog to not show the "X" close box in the titlebar? (what if I want to show a message dialog that the user cannot close, such as a "Loading..." dialog)

[jQuery] New 1.3 feature, native event delegation??

2009-01-22 Thread Sam H
John Resig said of 1.3: "I only posted last week about how event delegation can help you to optimize your code and it looks like jQuery will do it for you now, which means that any event handlers you add to a group of elements will automatically be added to matching elements when you create them.

[jQuery] Re: Traversal: Aggressive "next" to blast through all parents?

2008-11-11 Thread Sam H
Sorry - but your script causes an infinite loop for some reason. And jQuery's "nextUntil" doesn't work either, it doesn't survive past the end of the sibling tree. I need my function to go PAST the end of the list of siblings, up through parents, etc., all the way to the end of the document if n

[jQuery] Re: Traversal: Aggressive "next" to blast through all parents?

2008-10-30 Thread Sam H
Most excellent - thanks!

[jQuery] Re: Traversal: Aggressive "next" to blast through all parents?

2008-10-30 Thread Sam H
Anyone? I might have to write a plugin to do thishmm

[jQuery] Re: Adding a variable within a function name?

2008-10-29 Thread Sam H
On Oct 29, 4:57 pm, Nic Hubbard <[EMAIL PROTECTED]> wrote: > I am using the jquery each() function to find the id of text areas on > my page.  Then I need to add that id next to another function, but I > am getting syntax errors: > > $('textarea').each(function() { >         var textId = $(this).a

[jQuery] Traversal: Aggressive "next" to blast through all parents?

2008-10-29 Thread Sam H
Given HTML code like this: I want some way to skip to each 'stop' class..something that crawls forward, up and down parents and children, in other words: var x = $('#main').crawl('.stop');// [startingPoint].crawl([stoppingPoint]); Now x == $('#sub'). ne

[jQuery] Re: How to call a function directly that is normally an event.. ?

2008-10-29 Thread Sam H
Thanks!! On Oct 24, 9:08 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Let's say you have this: > > > $('#myID').click(magicFunc); > > > magicFunc looks like: > > > function magicFunc() > > { > >    $(this).fadeOut(); > > > } > > > Now, let's say I want to invoke magicFunc on a certain item MANUA

[jQuery] How to call a function directly that is normally an event.. ?

2008-10-24 Thread Sam H
Sorry, I don't know how to summarize this problem so I'll just post code. Let's say you have this: $('#myID').click(magicFunc); magicFunc looks like: function magicFunc() { $(this).fadeOut(); } Now, let's say I want to invoke magicFunc on a certain item MANUALLY, via code, not through a us

[jQuery] jQuery Cycle plugin question - changing speeds mid-slideshow

2008-09-19 Thread Sam H
I have an effect where I cycle through images with the default slow fade speed, and when a user mouses over a link, I jump to a specific image via: $('#myPics').cycle(3); The problem is, I want to change the fade options to "fast" just before I jump to that image. How would this be done?