[jQuery] slider ui 1.6 with different handle class doesn't work

2009-06-01 Thread kape
I was using jQuery UI 1.5.3 and after I upgraded to 1.6 some of my sliders are not working properly. To be more specific, once I let go of the slider handle after moving it, it still moves with the mouse, even though my mouse button is not pressed anymore. It seems that if I used a different han

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

2009-05-06 Thread kape
at we can see all of the pieces to the puzzle? > > On Apr 22, 7:07 pm, "Richard D. Worth" wrote: > > > Your code looks fine, and I wasn't able to reproduce what you're describing: > > >http://jsbin.com/ucaqi > > > - Richard > > > On Wed,

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

2009-04-22 Thread kape
The following code worked fine in 1.2.6 but after upgrading to 1.3.2 only the first table cell is shown/hidden. a b c d more ... jQuery('#moreLess').click(function() { if(jQuery(this).text() == 'more') { jQuery(this).text('less'); jQuery('.more').show(); } el

[jQuery] if the handle of a ui.slider is clicked/dblclicked, the arrow keys can be used to move the handle - even if disabled.

2009-01-15 Thread kape
As the subject states, if you click or double click on the handle of a ui.slider, you can then use the arrows to move the handle, even if the slider is disabled. Also, if you use the up or down arrows, the handle goes directly to the min value. Is there a way to fix this?

[jQuery] Re: How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-11 Thread kape
com/jquery.broadcast/ > > Note that it requires jQuery 1.3. That means you need to use the > version on trunk or any of the recently released betas. > > Cheers > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On Jan 9, 5:30 pm, kape wrote: > > > I have crea

[jQuery] Re: How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-09 Thread kape
on') $ > (this).data('disableCB')(); >      }); > > } > > These functions aren't tested, but I'm pretty sure they will give you > what you want (simulating the event structure in jQuery). > > If you call $('#elem').enable(function()

[jQuery] How can I add a TRUE custom event or modify existing jQuery functions?

2009-01-09 Thread kape
I have created custom styled buttons in my page and would like to toggle their class and therefore their look when they get disabled or enabled. So is there any way to call a function when .removeAttr ('disabled'), .attr('disabled', ''), and .attr('disabled', 'disabled') are invoked? Basically,

[jQuery] ui.slider with dynamic minimum range

2008-10-31 Thread kape
I am trying to implement a slider that can have one or two handles determined dynamically. If there are two handles they have to have a minimum range and if one handle gets close to the other handle, the other handle should move away in order to keep the minimum range. I found the following prob

[jQuery] ui.slider issues with .data() and moveTo

2008-10-30 Thread kape
I'm using jQuery 1.2.6 and ui 1.5.2 and am trying to implement a slider with two handles. When one handle moves too close to the other, I want the other handle to move too in order to keep a minimum range. I found two things that don't necessarily work as they should: 1. When flipping dynamical

[jQuery] append empty string causes error

2008-09-26 Thread kape
I'm not sure if this is correct behavior or a bug, but if I append an empty string it causes an error. So $('#someId').append('') causes an error. In my case, I'm actually supplying a variable to append() but this variable could be an empty string. I don't see why appending nothing would cause

[jQuery] Re: removeAttr for rowspan

2008-05-28 Thread kape
I encountered the same problem when I upgraded to 1.2.6 and using "rowspan" instead of "rowSpan" fixed it. I guess it was a bug fix. On May 27, 1:27 pm, snobo <[EMAIL PROTECTED]> wrote: > Since upgrading to 1.2.5 (the same applies to1.2.6), an attempt to $ > ('... td').removeAttr('rowSpan') trig

[jQuery] Re: 1.2.5 and 1.2.6 not working at all for me - what am I missing?

2008-05-28 Thread kape
I upgraded prototype from 1.5.1.1 to 1.6.0.2 and effects, builder, and dragdrop from 1.7.1b3 to 1.8.1 and everything seems to be working now. So if anyone is experiencing the same problem, upgrade to the latest versions of everything. On May 28, 9:58 am, kape <[EMAIL PROTECTED]> wrote: &g

[jQuery] Re: Versions 1.2.5 and 1.2.6 not working with prototype

2008-05-28 Thread kape
I upgraded prototype from 1.5.1.1 to 1.6.0.2 and effects, builder, and dragdrop from 1.7.1b3 to 1.8.1 and everything seems to be working now. So if anyone is experiencing the same problem, upgrade to the latest versions of everything. On May 28, 11:21 am, kape <[EMAIL PROTECTED]> wrote:

[jQuery] Versions 1.2.5 and 1.2.6 not working with prototype

2008-05-28 Thread kape
ve page to show an alert containing the html of the page on load. Instead, it shows an alert with "undefined". Kape

[jQuery] Re: 1.2.5 and 1.2.6 not working at all for me - what am I missing?

2008-05-28 Thread kape
x27;s weird because if I have the alert as alert(jQuery('#tabs').html()); it works, but others like alert(jQuery('body').html()); don't. Again, it is unfortunate that I'm stuck using prototype for now, but that's the situation. Any ideas on how to get jQuery

[jQuery] 1.2.5 and 1.2.6 not working at all for me - what am I missing?

2008-05-27 Thread kape
.0. Anyway, hopefully someone can point out whatever it is that I'm missing here. Thanks, Kape