[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
ear to do > > > anything > > > if the table is already sorted. > > > > -- Josh > > > > -Original Message- > > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > > > Behalf Of bayadmin > > > Sent: W

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
ear to do > > > anything > > > if the table is already sorted. > > > > -- Josh > > > > -Original Message- > > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > > > Behalf Of bayadmin > > > Sent: W

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
- Josh > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of bayadmin > Sent: Wednesday, May 27, 2009 1:30 PM > To: jQuery (English) > Subject: [jQuery] Re: Tablesorter is not enabled on my page > > HmmI tried

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread Matt Brown
> Behalf Of bayadmin > > Sent: Wednesday, May 27, 2009 1:30 PM > > To: jQuery (English) > > Subject: [jQuery] Re: Tablesorter is not enabled on my page > > > HmmI tried those, too. I changed both the function and table to > > another example given in the

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
- Josh > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of bayadmin > Sent: Wednesday, May 27, 2009 1:30 PM > To: jQuery (English) > Subject: [jQuery] Re: Tablesorter is not enabled on my page > > HmmI tried

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
HmmI tried those, too. I changed both the function and table to another example given in the documentation: 1) the scripts and function in the header.php:     $(document).ready(function() { // call the tablesorter plugin $("table").tablesorter(); }); 2) The table itself.

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread Josh Nathanson
glish) Subject: [jQuery] Re: Tablesorter is not enabled on my page HmmI tried those, too. I changed both the function and table to another example given in the documentation: 1) the scripts and function in the header.php:     $(document).ready(function() { // call the tablesorter p

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
HmmI tried those, too. I changed both the function and table to another example given in the documentation: 1) the scripts and function in the header.php:     $(document).ready(function() { // call the tablesorter plugin $("table").tablesorter(); }); 2) The table itself.

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
HmmI tried those, too. I changed both the function and table to another example given in the documentation: 1) the scripts and function in the header.php:     $(document).ready(function() { // call the tablesorter plugin $("table").tablesorter(); }); 2) The table itself.

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
HmmI tried those, too. I changed both the function and table to another example given in the documentation: 1) the scripts and function in the header.php:     $(document).ready(function() { // call the tablesorter plugin $("table").tablesorter(); }); 2) The table itself.

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread GaVrA
Ehh... Faster then me for 3min... :P On May 27, 10:11 pm, Jonathan wrote: > the ID 1 is invalid. > > Seehttp://www.w3.org/TR/REC-html40/types.html#type-name > > On May 27, 10:26 am, bayadmin wrote: > > > Hello, I am trying out the Tablesorter in Wordpress 2.7.1  to make a > > membership list so

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread GaVrA
You are right Matt. "ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".")." http://www.w3.org/TR/REC-html40/types.html#type-name On May 27, 10:08 pm, Matt Brown wro

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread Jonathan
the ID 1 is invalid. See http://www.w3.org/TR/REC-html40/types.html#type-name On May 27, 10:26 am, bayadmin wrote: > Hello, I am trying out the Tablesorter in Wordpress 2.7.1  to make a > membership list sortable. For some reason the sortable features isn't > being enabled (or at least visible

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread Matt Brown
I'm pretty sure it's invalid HTML/CSS/whatever to have elements whose IDs start with a number. Trying using a regular name, such as "element1". On May 27, 4:03 pm, bayadmin wrote: > Hi GaVrA, per your suggestion I added the # sign to the function and > it did not make any difference. > > On May

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread bayadmin
Hi GaVrA, per your suggestion I added the # sign to the function and it did not make any difference. On May 27, 12:17 pm, GaVrA wrote: > I think you didnt make selector valid. You need to use them just like > you use in css. For instance, you have this: > > $("1").tablesorter( {sortList: [[0,0],

[jQuery] Re: Tablesorter is not enabled on my page

2009-05-27 Thread GaVrA
I think you didnt make selector valid. You need to use them just like you use in css. For instance, you have this: $("1").tablesorter( {sortList: [[0,0], [1,0]]} ); it should be this: $("#1").tablesorter( {sortList: [[0,0], [1,0]]} ); On May 27, 7:26 pm, bayadmin wrote: > Hello, I am trying o