[jQuery] Re: How do I remove a plugin melodramatically

2008-10-13 Thread Dan M
ject: [jQuery] Re: How do I remove a plugin melodramatically > > > One option is to use unbind on the event that this plugin uses. $. > > ("element").unbind("click"); > > > Anyone has any other solution? > > > On Oct 10, 9:21 pm, Dan M <[EMAI

[jQuery] How do I remove a plugin melodramatically

2008-10-10 Thread Dan M
All, If I were to add a plugin to an element on a page, say clueTip. How could I remove the plugin from the element when I want without reloading the page? Regards, Dan

[jQuery] Issue with fadeIn/Out over show/hide...

2008-04-08 Thread Dan M
All, I noticed a difference with fadeIn() over show() that forced me to use show() when I wanted to use fadeIn()... I have some elements in a div, and the background color of the div is different from the rest of the page so you know that these elements are grouped together. When the page loads,

[jQuery] Re: Testing to see if a checkbox is checked

2008-03-24 Thread Dan M
Erik, Both worked great, thank you very much! Dan On Mar 19, 9:37 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > Try: > > $(...).is(":checked") > > Also, you can set the value attribute with .val("new value") > > --Erik >

[jQuery] Combine two jQuery objects

2008-03-24 Thread Dan M
Hello all, I have the following code (which does not work) var childElmts; if (prntElmtID == 'P30_DESKTOP') { childElmts = $ ("#P30_DESKTOP_ADD,label[for='P30_DESKTOP_ADD']"); } else { childElmts = $ ("#P30_LAPTOP_ADD,label[for='P30_LAPTOP_ADD']");

[jQuery] Re: ui.datepicker causes IE "operation aborted"

2007-12-12 Thread Dan M
Charles, I have a feeling you need to switch your $(document).ready() function to a $(window).load() function. Let me know if that works for you. Regards, Dan On Dec 8, 5:26 pm, Charles Johnson <[EMAIL PROTECTED]> wrote: > I believe this bug was supposed to have been fixed in the move from > jQ

[jQuery] What happened to clueTip?

2007-12-11 Thread Dan M
Karl, Although I can still find some clueTip pages, such as plugins.learningjquery.com/cluetip, I can't seem to find it in the main jQuery plugins page. You're not thinking of canning it are you??? That would be the worst thing ever!!! ;) Dan

[jQuery] Re: Datepicker and autocomplete not playing nice together?

2007-12-06 Thread Dan M
ting the list.scrollTop error when doing > the autocomplete on the employee field. > > I'm digging through my CSS files to make sure I haven't done something > bone-headed, but so far it seems proper... > > Thanks for the input. > > Shawn > > Dan M wrote: > > Sh

[jQuery] Re: Datepicker and autocomplete not playing nice together?

2007-12-03 Thread Dan M
Shawn, Are you able to "turn off" the auto complete for your date picker fields? I couldn't see it being very useful there anyway... Dan On Dec 3, 12:22 am, Shawn <[EMAIL PROTECTED]> wrote: > I have a couple of forms that require both an autocomplete field, and a > date picker field. I'm using

[jQuery] Re: Referencing the target element with clueTip

2007-12-02 Thread Dan M
can figure out whatever else you need to do. If not, > you'll need to provide more explanation, because I'm kind of slow. > > Anyway, I put a demo page up for you here: > > http://test.learningjquery.com/clue/demo/danm.html > > --Karl > _ > Karl Swedb

[jQuery] Re: Referencing the target element with clueTip

2007-12-02 Thread Dan M
d, by default it uses the rel="Attribute.html". > Regards > > On 2 Dez., 02:31, Dan M <[EMAIL PROTECTED]> wrote: > > > All, > > > If I'm using an ajax solution with clueTip, how can I pass in the > > target element so that I can generate dynamic content based on the > > element being hovered over? > > > Dan

[jQuery] Re: Referencing the target element with clueTip

2007-12-02 Thread Dan M
All, Sorry, more details... I use an AJAX framework that is able to get the data I need the way I need it. I can set the innerhtml value equal to the return value and use the "local" option to display the result. The problem is this... The data that is returned depends on what the user is hoveri

[jQuery] Referencing the target element with clueTip

2007-12-01 Thread Dan M
All, If I'm using an ajax solution with clueTip, how can I pass in the target element so that I can generate dynamic content based on the element being hovered over? Dan

[jQuery] Re: Newbie needs help on selector

2007-11-29 Thread Dan M
Karl, Thanks for taking the time to help! Should I be able to apply the hide method from there??? $('input:not(:checkbox)').prev('label').hide('slow'); Dan On Nov 29, 10:45 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Nov 29, 2007, at 8:00 PM, Da

[jQuery] Newbie needs help on selector

2007-11-29 Thread Dan M
All, I don't know if this is the correct place to post this but here goes... I have form with many elements (textboxes, selects, textareas and such). Each element has a label just before it. I'm trying to select all of the labels in the form EXCEPT those that precede a checkbox. Thanks in advan