[jQuery] Re: FadeTo() On Table Row

2009-02-27 Thread Brian Schilt
ce animation, it'll do > as a compromise until M$ pull their thumb out. > > However, do you think this is worth reporting to the jQuery bugs list, > perhaps its a quirk they can work in? > > Rob > > On Feb 27, 2:29 pm, Brian Schilt wrote: > > > Yeah, thats IE for

[jQuery] Re: FadeTo() On Table Row

2009-02-27 Thread Brian Schilt
Yeah, thats IE for ya. I've done something similar and I really haven't come across a better method of doing it then what you are currently doing. You can check out this past thread that is related... http://groups.google.com/group/jquery-en/browse_thread/thread/5027a7d6a2d3e918?q=table#1cd7836015

[jQuery] Re: BlockUI blacks-out whole screen (BlockUI2.0x, IE7). Opacity?

2008-10-15 Thread Brian Schilt
problem. I simply changed the overlay back ground image from a PNG to a GIF and all is good again. brian On Oct 15, 10:07 am, Brian Schilt <[EMAIL PROTECTED]> wrote: > I'm having a similar issue, but with IE6. I'm using blockUI a lot in > my app and the opacity has always wo

[jQuery] Re: BlockUI blacks-out whole screen (BlockUI2.0x, IE7). Opacity?

2008-10-15 Thread Brian Schilt
I'm having a similar issue, but with IE6. I'm using blockUI a lot in my app and the opacity has always worked fine in IE6. I added a new feature to the app where I needed to block out the entire screen in order to display a caveat message to the user and for some reason the overlay is completely b

[jQuery] Re: jQuery.ScrollTo 1.4 released

2008-09-11 Thread Brian Schilt
manage to implement it ? > If you can provide a demo, I'll tell you what's going on. > > -- > Ariel Fleslerhttp://flesler.blogspot.com/ > > On Sep 11, 10:05 am, Brian Schilt <[EMAIL PROTECTED]> wrote: > > > Excellent! I've tried on two separate occas

[jQuery] Re: jQuery.ScrollTo 1.4 released

2008-09-11 Thread Brian Schilt
Excellent! I've tried on two separate occasions to get this type of scrolling on my app but haven't been successful. I'll try this latest one and hopefully it works. Thanks again. Brian On Sep 10, 11:56 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Hi all > > After many months of no-plugin-dev

[jQuery] Re: Traversing the style of childs

2008-09-10 Thread Brian Schilt
You've got the right idea, but don't worry about the css width property. Its better to use the .width() method built into jQuery to get what you want. You could do something like this: var size = 0; $("#container > .content").each(function(){ size += $(this).width(); }); I have not tested the

[jQuery] Re: Adding a new row

2008-09-10 Thread Brian Schilt
You can use the .clone() method to achieve this. When the button is clicked, clone the last row of the table then change any specific IDs. $('.button').click(function(){ var newRow = $('table tbody tr:last').clone(); $('table tbody').append(newRow); }); Brian On Sep 10, 7:29 am, Babu PCA <[

[jQuery] Re: animate in order

2008-08-28 Thread Brian Schilt
).animate({height:550}, {duration: 750, easing: > 'easeOutBack'}, >         function(){ >             alert("hello"); >         }); > > and it didn't alert when I ran the page. Do you have any other ideas? > > Thanks, > Ronn > > On Thu, Aug 28, 200

[jQuery] Re: Change event for hidden form field

2008-08-28 Thread Brian Schilt
I would recommend replacing the pop up window with an in-page modal window (http://ui.jquery.com/repository/latest/demos/functional/ #ui.dialog). The modal windows these days are advanced enough to function much like a pop up window with draggable, resizable, scolling and whatnot. This would be ea

[jQuery] Re: Understanding event delegation

2008-08-28 Thread Brian Schilt
ent, I would have to put it twice > in my code to account for the spans inside of my anchor.  Even with > doing this, and having more js, is it still a better idea to use event > delegation rather than something like livequery, where each element > gets an event binded? > > On Au

[jQuery] Re: Travel a Table filtered by checked Checkboxes

2008-08-28 Thread Brian Schilt
Would you be able to store the Reference Number in the value attribute of the checkbox? That would make things a lot easier. Then you could do something like this? $(tableID) .find(':input:checkbox:checked') .each(function(){ alert('ref number: ' + $(this).val()); }); Brian On Aug 28

[jQuery] Re: animate in order

2008-08-28 Thread Brian Schilt
You'll need to put the second animation in the callback function of the first. $('#backDropLeft') .animate({height:550}, {duration: 750, easing:'easeOutBack'}, function(){ $('#contactBox').fadeIn(1000, function() { }); }); Brian On Aug 28, 9:56 am, Ronn <[EMAIL PROTECTED]> wrote: > I

[jQuery] Re: Understanding event delegation

2008-08-26 Thread Brian Schilt
> so when you have an anchor set as > block, with a few spans to style text, it is hard to click on the > actual anchor to give it the class. Is this normal? That is a normal reaction when using event delegation and its one of the "difficulties" that Ariel was probably referring to. You'll need

[jQuery] Re: jQuery Listen plugin help

2008-08-18 Thread Brian Schilt
try applying 'Listen' to the images container and adding the click listener to the 'thumbs' class. $('#images-container').listen('click', '.thumbs', function(){ alert('click'); }); Brian On Aug 18, 11:50 am, sergeh <[EMAIL PROTECTED]> wrote: > I was easily able to make the plugin work where I

[jQuery] Re: How do I fade images onLoad, on the fly?

2008-07-21 Thread Brian Schilt
I have an idea for ya, I haven't actually done this before, but this is the way I would approach something like this. First, I would recommend updating your markup so that the pictures in each portfolio group (web design, print design, identity etc...) is inside of its own container. Second, add

[jQuery] Re: jquery doesn't work in dynamic table??!

2008-06-16 Thread Brian Schilt
I believe its a timing issue. jQuery might be trying to select the table elements before javascript has finished building the table. You might want to try wrapping the table building code in a function, then return the jquery selector code. That way you know the table is actually appended to the D

[jQuery] Re: how do I get a printed jQuery documentation

2008-06-11 Thread Brian Schilt
You can refer to this post regarding printing documentation from the website: http://groups.google.com/group/jquery-ui/browse_frm/thread/8e79882c2b401e75/9204a3a4b256ce5a?lnk=st&q=#9204a3a4b256ce5a Brian On Jun 10, 9:23 pm, JACK <[EMAIL PROTECTED]> wrote: > Hi, all > > How do I get a printed do

[jQuery] Re: Table slide toggle

2008-05-22 Thread Brian Schilt
oudream.name/jquery/tbody-slidetoggle.html > > It seems the enchant doesn't work at all. :-( > > On May 22, 12:02 am, Brian Schilt <[EMAIL PROTECTED]> wrote: > > > I've had these similar problems with trying to animate table rows and > > cells. this problem is

[jQuery] Re: Table slide toggle

2008-05-21 Thread Brian Schilt
I've had these similar problems with trying to animate table rows and cells. this problem is related to animations that adjust the width of the TR and TD elements. I've found that if I use animations that do not adjust the width, it acts fine. I would recommend you check out jQuery Enchant library

[jQuery] Re: How to select a form which don't have an input with name id?

2008-05-19 Thread Brian Schilt
CORRECTION: the IF statement needs a == instead of the =. if($form.find('input[name=id]').length == 0) {...} On May 19, 9:34 am, Brian Schilt <[EMAIL PROTECTED]> wrote: > You could do something like this: > > $('form').each(function(){ > var $form = $(t

[jQuery] Re: How to select a form which don't have an input with name id?

2008-05-19 Thread Brian Schilt
You could do something like this: $('form').each(function(){ var $form = $(this); if($form.find('input[name=id]').length = 0) { //create new input. $("").appendTo($form); } }); This will check each form on the page for an input field with an attribute of name=id. If it doesn't exis

[jQuery] [blockUI] proposed IE6 patch to allowBodyStretch option

2008-05-15 Thread Brian Schilt
I've downloaded the latest blockUI code and despite using the new allowBodyStretch option, the overlay still will not completely cover the viewport in IE6, for short pages. The current code (around line #163) tries to size the body and html tags with the following: $('html,body').css('height','1