I'm not sure when it started working because I made all the rows of data have the same content. It does sort, but it still looks plain. I'm using the full path to the css file. http://www......com/dev/js/themes/blue/style.css
I can put the css file link in the web browser and open it, but it still isn't being applied to the table. I'm at a loss. Thanks for the help aquaone :) I'm not giving up On Jun 11, 2:29 pm, sso <strongsilent...@gmail.com> wrote: > It also doesn't list anything under "required" except for jquery- > latest and tablesorter.js > > On Jun 11, 2:22 pm, sso <strongsilent...@gmail.com> wrote: > > > > > By css, you mean the theme? (blue or green) ? > > > On Jun 11, 2:09 pm, aquaone <aqua...@gmail.com> wrote: > > > > Are you sure it's not working? > > > Often people haven't included the accompanying CSS and don't realize that > > > it > > > is working -- They just don't see the changes because they didn't include > > > the CSS. > > > > aquaone > > > > On Thu, Jun 11, 2009 at 11:06, sso <strongsilent...@gmail.com> wrote: > > > > > I've used tablesorter before. I know its not intended to be > > > > complicated, so I assume I'll want to slap myself when I figure out > > > > how simple the problem was. > > > > > when I put other functions in my document.ready they work fine. > > > > > from the head tag: > > > > > <script type="text/javascript" src="js/jquery-1.2.6.min.js"></ > > > > script> > > > > <script type="text/javascript" src="js/jquery-treeview/ > > > > jquery.treeview.js"></script> > > > > <script type="text/javascript" src="js/jquery.tablesorter.min.js"></ > > > > script> > > > > <script type="text/javascript" src="js/ > > > > jquery.tablesorter.pager.js"></script> > > > > > <script type="text/javascript"> > > > > > $(document).ready(function(){ > > > > > $("#myresults").tablesorter(); > > > > > }); > > > > </script> > > > > > From the body: > > > > > <table id="myresults"> > > > > > <tr> > > > > <td>1</td> > > > > <td>2</td> > > > > <td>3</td> > > > > </tr> > > > > > <tr> > > > > <td>1</td> > > > > <td>2</td> > > > > <td>3</td> > > > > </tr> > > > > > <tr> > > > > <td>1</td> > > > > <td>2</td> > > > > <td>3</td> > > > > </tr> > > > > > <tr> > > > > <td>1</td> > > > > <td>2</td> > > > > <td>3</td> > > > > </tr> > > > > > </table>