[jQuery] Re: suggestions for a hover zoom on text...

2008-05-06 Thread gr00vy0ne
so: // change the contents tz.html(th.html()); This will improve performance because you are not calling the jQuery function as many times. -- Josh - Original Message - From: gr00vy0ne [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Monday, May 05, 2008

[jQuery] suggestions for a hover zoom on text...

2008-05-05 Thread gr00vy0ne
I'm trying to come up with a technique for expanding text when you hover over it. I built a real quick and dirty demo to help explain the affect I'm trying to achieve: http://imlocking.com/projects/zoom_text.html So, in the list of times, I'd like to make them pop when you hover over. Of

[jQuery] Tablesorter IE7 Problem

2008-03-28 Thread gr00vy0ne
I'm having a weird problem where Tablesorter does not sort properly in IE7. It works perfectly fine in Firefox 2.0.0.x and Safari. The one tricky thing in my structure is that I don't have text in my td cell. Instead, I have input buttons with values which go directly in each cell. Here's my

[jQuery] Re: Tablesorter IE7 Problem

2008-03-28 Thread gr00vy0ne
Ok, I solved my problem with a little hack. I simply added a hidden span/span with the description in the cell and changed the sort to simple and then it sorts just fine. It's a little extra markup but it works. -v On Mar 28, 12:53 am, gr00vy0ne [EMAIL PROTECTED] wrote: I'm having a weird

[jQuery] Re: setTimeout / clearTimeout question...

2008-01-24 Thread gr00vy0ne
On Jan 23, 6:42 pm, gr00vy0ne [EMAIL PROTECTED] wrote: This is more of a general javascript question but when using setTimeout and clearTimeout, does the timer variable have to exist outside the function globally? For instance, I understand the following: var t; $(.some_link).hover

[jQuery] setTimeout / clearTimeout question...

2008-01-23 Thread gr00vy0ne
This is more of a general javascript question but when using setTimeout and clearTimeout, does the timer variable have to exist outside the function globally? For instance, I understand the following: var t; $(.some_link).hover(function() { clearTimeout(t) $(#this_layer).show(); },

[jQuery] Carousels and removing elements from the DOM...

2007-09-20 Thread gr00vy0ne
I'm working on a unidirectional carousel that makes ajax calls to load more elements to be displayed. In my pane, I'm displaying 4 elements (of class .item) in a queue (called .my_queue). | [] [] [] [] | {} {} {} {} () () () () When the user clicks a MORE button, the elements move

[jQuery] Re: event.target and switch statement...

2007-09-07 Thread gr00vy0ne
(event.target.className) { case 'close': do stuff break case 'continue': do stuff break etc. -- Josh - Original Message - From: gr00vy0ne [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Thursday, September 06, 2007 11

[jQuery] Re: click away from layer to disappear

2007-08-27 Thread gr00vy0ne
the alert box. However, in IE6/IE7 there's no response whatsoever. Any thoughts on what might be causing this? Thanks, -v On Aug 24, 5:06 pm, gr00vy0ne [EMAIL PROTECTED] wrote: Thank you so much! That's exactly the direction I needed for my code. I got it working and added an extra

[jQuery] Re: click away from layer to disappear

2007-08-24 Thread gr00vy0ne
(myTimeOut);}) .mouseout(function(){ myTimeOut = setTimeout(function(){//code to hide layer}, 1000); }) Try that, it is untested but should point you in the right direction. On 8/23/07, gr00vy0ne [EMAIL PROTECTED] wrote: jquery newbie (more designer than programmer) here... I have

[jQuery] click away from layer to disappear

2007-08-23 Thread gr00vy0ne
jquery newbie (more designer than programmer) here... I have a button on my page that triggers (via hover) a layer pop-up. I currently have the layer pop-up disappearing once a user takes action within the layer but I would like the layer to disappear if the user clicks anywhere else on the