[jQuery] Re: slideDown for a tr ignores the colspan

2008-03-24 Thread QuadCom
My suggestion would be to use div's instead of tables for this layout. div style=float:left;width:33%;stuff/div div style=float:left;width:33%;stuff/div div style=float:left;width:33%;stuff/div div style=clear:left;display:none id=expandmestuff/div Of course it would be better to have your CSS

[jQuery] Re: Can jQuery do this?

2008-04-19 Thread QuadCom
This site was built using Adobe Flex. When Flex 2.0 was released they had a demo application that was identical (other than the colour scheme). Flex isn't too difficult to learn and probably something that a savvy web developer should have in their toolbox.I use jQuery quite a bit and I will

[jQuery] Re: jScrollPane snapping when link is clicked

2008-11-12 Thread QuadCom
Point the href to 'javascript:void(0)' It disables the href but the onclick event will still fire. On Nov 11, 2:32 pm, X10D3 [EMAIL PROTECTED] wrote: I have a list of links in my pane. When I click a link it snaps to the top of the pane and I have to click it again. Is there anyway I can fix

[jQuery] BlockUI Auto-Unblock

2008-11-19 Thread QuadCom
I am trying to get blockUI to display a temporary alert that will last for X seconds and then automatically unblock. I have be [EMAIL PROTECTED]@'ing around with the pause plug in but I have never been able to get that thing to work at all. I am also using the forms plugin to process the form.

[jQuery] Flow control in functions.....

2008-11-27 Thread QuadCom
I may have titled this wrong but that is the best description I could think of being a newbie. I have a function the inside calls another function. What I need to have happen is for the calling function to wait for a response from the called function but that is not what is happening. The

[jQuery] setTimeout function call...

2008-12-03 Thread QuadCom
I am trying to use setTimeout to call another function. Everytime I put the functions I wish to call within the doc.ready block, I get errors stating that the function is undefined. If I move it out of the doc.ready block it works fine. The problem is I can't share vars between teh doc.ready

[jQuery] Re: setTimeout function call...

2008-12-03 Thread QuadCom
Holy @!$! that was fast. Thanks guys, This is all in doc.ready. If I move the regular functions out, I cannot use the 'olde' var in them. If I set the 'olde' var outside of doc.ready, I can't use it inside doc.ready. I'm sure there is a simple fix for this but the little grey cells are smoking

[jQuery] Re: setTimeout function call...

2008-12-03 Thread QuadCom
That is just awesome, thanks very much. Just like you said, I did see the syntax as setTimeout(funcName(), 2000); everywhere, even on tutorial sites. I could have saved a few hours, 3 advil and my sanity if I found this out earlier.

[jQuery] Re: setTimeout function call...

2008-12-03 Thread QuadCom
That is just awesome, thanks very much. Just like you said, I did see the syntax as setTimeout(funcName(), 2000); everywhere, even on tutorial sites. I could have saved a few hours, 3 advil and my sanity if I found this out earlier.

[jQuery] Re: addClass with attrs

2008-12-07 Thread QuadCom
addClass is exactly what it says, it adds a class. Predefine the class in your CSS pages with the attributes you require and use the addClass function to add it to your target..addClass('newclass'); You can also use removeClass to remove the class .removeClass('newclass'); If you want to define

[jQuery] Re: my test passes the first time, but fails the second time

2008-12-15 Thread QuadCom
It seems to me that you are having a binding problem. I came across this in the past and found the simplest solution to the problem. Your original code is kinda correct but there's too much of it. Your defining a click event in doc.ready is correct as written but only gets fired once at document

[jQuery] Re: How to make an element *not* have a function attached...

2009-02-14 Thread QuadCom
Here's my understanding. unbind will work for events. The expandable function you applied is not an event. What I would do in this instance is on the hide button, remove the textarea with the expandable and then insert a new textarea with the same id. That would appear to remove the expandable

[jQuery] Re: How to make an element *not* have a function attached...

2009-02-14 Thread QuadCom
the hidden textarea so that it doesn't submit with the other form data. On Feb 14, 2:11 pm, QuadCom supp...@quad-com.ca wrote: Here's my understanding. unbind will work for events. The expandable function you applied is not an event. What I would do in this instance is on the hide button