[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread Jimbo M
Even though I'm going WAY off topic here, I'd like to stand up and give a great round of applause to the jQuery community. I started working with jQuery a few months back, and one of the things I really like about it is the dev community's willingness and readiness to not only answer questions abo

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread David Blomstrom
I do, though I've never really learned how to use it. I'll have to take a closer look at it. Opera is actually my default browser, though I love Firefox for all its extensions. * * * * * On Wed, Dec 10, 2008 at 9:23 AM, Michael Geary <[EMAIL PROTECTED]> wrote: > Don't feel bad! I am also somewh

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread Michael Geary
Don't feel bad! I am also somewhat chagrined that diffing the two versions of the page as I suggested probably wouldn't have helped in this case. :-) BTW, in addition to Firebug, do you also have the Web Developer Toolbar? It's probably the other most essential developer tool for Firebug. Go get

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread David Blomstrom
Yes. I'm going to remove it. I think that's for another JS function I'd like to replace with JQuery. I'll make another post soon askng how to do it with JQuery if I can't figure it out. Thanks. On Wed, Dec 10, 2008 at 5:41 AM, Olivier Percebois-Garve < [EMAIL PROTECTED]> wrote: > xAddEventListe

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread Olivier Percebois-Garve
xAddEventListener is not defined==> means there is a script using another libraries code. You hqave to remove that script, if your are not using it. If you do use it, you will have a conflict between jQuery and Prototype, both are using a $ function. In that case, have a look at how to run

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread James Hughes
Sent: Wed 10/12/2008 13:08 To: jquery-en@googlegroups.com Subject: [jQuery] Re: TableSorter vs CMS I'm checking that right now. If the links to my style sheets are OK (and they are), then the links to m

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread David Blomstrom
tab of firebug and see the get request for the JS file - is > the response a 404 or the contents of the file? > > James > > > From: jquery-en@googlegroups.com on behalf of David Blomstrom > Sent: Wed 10/12/2008 13:08 > To: jquery-en@googlegro

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread James Hughes
on behalf of David Blomstrom Sent: Wed 10/12/2008 13:08 To: jquery-en@googlegroups.com Subject: [jQuery] Re: TableSorter vs CMS I'm checking that right now. If the links to my style sheets are OK (and they are), then the links to my JavaScripts should be OK. However, there is aother pos

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread David Blomstrom
avid Blomstrom > Sent: Wed 10/12/2008 13:01 > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: TableSorter vs CMS > > > > > On Wed, Dec 10, 2008 at 4:14 AM, Olivier Percebois-Garve < > [EMAIL PROTECTED]> wrote: > > > >There is a lot to gra

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread James Hughes
: [jQuery] Re: TableSorter vs CMS On Wed, Dec 10, 2008 at 4:14 AM, Olivier Percebois-Garve <[EMAIL PROTECTED]> wrote: There is a lot to grasp for you, but what you are doing is rather simple. Forget the "AJAX callback" and "onSuccess". This

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread David Blomstrom
On Wed, Dec 10, 2008 at 4:14 AM, Olivier Percebois-Garve < [EMAIL PROTECTED]> wrote: > > There is a lot to grasp for you, but what you are doing is rather simple. > > Forget the "AJAX callback" and "onSuccess". This is the answer to a common > problem that you dont have, > > since your not using a

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread Olivier Percebois-Garve
There is a lot to grasp for you, but what you are doing is rather simple. Forget the "AJAX callback" and "onSuccess". This is the answer to a common problem that you dont have, since your not using any AJAX. For firebug, you need to activate the console, and look there if there is no js error.

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread David Blomstrom
Thanks for the tips, but I'm confused. You're suggesting I use an AJAX callback function and initiate the PHP onSuccess. I searched for "AJAX callback" and "onSuccess" on JQuery's website but found no information about either one. I downloaded Firebug, but I'm not yet sure how to use it. It displa

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread donb
ailto:[EMAIL PROTECTED] On Behalf Of donb > > Sent: Tuesday, December 09, 2008 6:57 PM > > To: jQuery (English) > > Subject: [jQuery] Re: TableSorter vs CMS > > > My guess is that the 'CMS' inserts some onload code that > > interferes with your j

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread Michael Geary
Message- > From: jquery-en@googlegroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of donb > Sent: Tuesday, December 09, 2008 6:57 PM > To: jQuery (English) > Subject: [jQuery] Re: TableSorter vs CMS > > > My guess is that the 'CMS' inserts some onload code that

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread donb
My guess is that the 'CMS' inserts some onload code that interferes with your jQuery code that's supposed to run on page load. If you haven't already, get fthe Frefox browser and the Firebug addin. You will be able to step through the javascript as the page loads, to see what is actually happeni

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread David Blomstrom
What constitutes "manipulation"? It's a dynamic table, so I use PHP and a MySQL query to "populate" it with data. I removed a PHP script that gave each table row a class - though I didn't touch a similar touch that gives each table cell a class. At any rate, I'll replace the entire dynamic table s

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread David Blomstrom
Thanks for all the tips, even if I don't understand all this stuff yet. :) Unfortunately, I got called in to work, so I'm away from my main computer. However, I'll try the things you suggested when I get home in the morning.

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread MorningZ
Understanding $(document).ready(function() { $("#myTable").tablesorter({ widgets: ['zebra']} ); } ); would go a long way to understanding why/how... That code gets executed *one single time*, when the page is pulled up and the DOM is "ready" if at some point after that, you manipula

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread Olivier Percebois-Garve
Atz some point you've to sum up what is supposed to happen and isolate the faulty part. No js is running. the row mouseover is probably css. So you've to find out why. A wrong path to the jQuery files may be a guess. Anyway go through the different steps: -is jquery properly included (you may downl

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread Michael Geary
The browser, its JavaScript interpreter, and jQuery have no idea whether your page is a static page or was generated dynamically. It's all the same by the time it gets to the browser. If one works and the other doesn't, there must be *some* difference in the HTML code delivered to the browser, or

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread taylormade
I was having the same problem... It depends how you call the PHP... Best bet is using jquery's AJAX callback function and initiate the PHP onSuccess... i did the same thing here: (use firebug to explore the code): (everything in the is print()'d by PHP... http://www.themeans.info/cms/galleryMan