[jQuery] Re: problem with events and tablesorter

2009-07-06 Thread Charlie
If you are using progressive enhancement for table, pagination plugin seems to take the markup out of the DOM to store in jQuery object and then display only required number of rows. You can see this in the example of pagination plugin. http://tablesorter.com/docs/example-pager.html as well

[jQuery] Re: Problem with events

2008-10-31 Thread Michael Geary
Glad to help! Sometimes people get annoyed with me when I answer a question with another question or a little riddle like that, when they really just wanted a quick answer. So I appreciate your going to the extra work to figure out the point I was getting at. :-) I find this let's forget about

[jQuery] Re: Problem with events

2008-10-30 Thread debussy007
Hi Mike ! Thank you for the effort you bring in each of your answers! I tought at first this example was not at all similar to my situation, but actually it is ! I had an anonym callback function, but I can rather make it a standard function and just call this function. I was just confused

[jQuery] Re: Problem with events

2008-10-29 Thread Michael Geary
Let's forget jQuery for a moment and reword the question slightly... I've written a couple of functions named one and two: function one() { alert( 'one!' ); } function two() { alert( 'two!' ); } Somewhere else there is code that calls function one. I don't know