[jQuery] .tableSorter - sorting from hidden values

2008-05-23 Thread A13thGuest
Is it possible to sort based on a custom attribute in a column? If so, how? Creating a hidden column with the values I need to sort by is not working out to be the best solution at this point. Thanks in advance.

[jQuery] Favorite Modal Dialog?

2008-05-16 Thread A13thGuest
Hey all, I'm needing to implement a dialog that will contain an div. I need the rest of the page to go dark and have controls outside the dialog disabled. Are there any existing favorite approaches or plugins? Thanks in advance!

[jQuery] Re: tablesorter bug?

2008-04-30 Thread A13thGuest
)[0].config.sortList; // grabs the current > tablesorter sorting configuration > $("#myTable").trigger("sorton",[sorting]); // resorts using the current > tablesorter configuration > > HTH, > Carl > > A13thGuest wrote: > > The tablesorter is ac

[jQuery] tablesorter bug?

2008-04-30 Thread A13thGuest
The tablesorter is acting goofy and I'm wondering if anyone has any insight to the problem or a way to fix it. I'm adding rows to a table then calling tablesorter: $('#myTable').tablesorter(); Works fine. If I clear rows from the table then add more rows, I call tablesorter again: $('#myTable'

[jQuery] Re: how to preserve the image that was there when I roll over

2008-04-29 Thread A13thGuest
you may be able to cache the images to get what you want here's an untested crack at it, hopefully it will get you close: $(document).ready(function(){ imgGreen = new Image(15,15); imgGreen.src = 'images/Green.gif'; imgYellow = new Image(15,15); imgYellow.src = 'images/Yellow.gi

[jQuery] Re: Having a div load on hover instead of click

2008-04-26 Thread A13thGuest
$(".rss-link").hover(function(){ $("#rss-subscribe").fadeIn("slow"); }, function() { $("#rss-subscribe").fadeOut("slow"); }); Jimmiejo wrote: > I only started working with jQuery a week or so ago and love the > library (I'm new to javascript). I've used it to create several