[jQuery] Re: Pagination

2009-08-11 Thread James
I'm assuming a page is a dynamic page with the same URL? For example, a different layer or content loaded dynamically via AJAX. If that's the case one way is through the URL hash (e.g. page.html#p3 - indicates page 3). Every time you change a page, you update the hash in the URL. If you do a

[jQuery] Re: Pagination

2009-08-11 Thread James
Geez, I screwed up on a sentence pretty badly.. so technically hitting backspace on your keyboard will navigate through the changes in hash. On Aug 11, 9:43 am, James james.gp@gmail.com wrote: I'm assuming a page is a dynamic page with the same URL? For example, a different layer or

[jQuery] Re: Pagination control jquery -- Need some help

2009-02-26 Thread Frederik Ring
Why don't you just do it like: $('#prev').css('cursor','pointer').click(function(){ $('.page:visible').hide().prev().show(); } Same with next. $('#next').css('cursor','pointer').click(function(){ $('.page:visible').hide().next().show(); } You will pro On Feb 26, 5:43 pm, Doug C

[jQuery] Re: Pagination control jquery -- Need some help

2009-02-26 Thread Frederik Ring
Sorry I think it has to be: $('.page:visible').hide().prev('.page').show(); and $('.page:visible').hide().next('.page').show(); Or is the second class selection not necessary? On Feb 26, 8:33 pm, Frederik Ring frederik.r...@gmail.com wrote: Why don't you just do it like:

[jQuery] Re: Pagination control jquery -- Need some help

2009-02-26 Thread Doug C
Thanks man. I'll give it a shot and let you know. On Feb 26, 2:36 pm, Frederik Ring frederik.r...@gmail.com wrote: Sorry I think it has to be:  $('.page:visible').hide().prev('.page').show(); and  $('.page:visible').hide().next('.page').show(); Or is the second class selection not

[jQuery] Re: pagination solution

2008-10-27 Thread Rene Veerman
'plugin' usually refers to a javascript thing. you need php aswell and since db definitions vary wildly, it's hard to create something standarized.. i dont know of any components/plugins that do this and are easy to configure.. i did write something on this topic, which you can find

[jQuery] Re: pagination solution

2008-10-27 Thread Andy Matthews
, October 27, 2008 12:23 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: pagination solution 'plugin' usually refers to a javascript thing. you need php aswell and since db definitions vary wildly, it's hard to create something standarized.. i dont know of any components/plugins that do

[jQuery] Re: [Pagination Plugin] How to use it?

2008-07-06 Thread Sebastián V. Würtz
i use function pageselectCallback(page_id, jq) { $('#libro_result').text(Mostrando resultados del +((page_id*10)+1)+-+((page_id*10)+10)); $(#firmas).load(libro.php,{action: listar, page: page_id}); return false; } Raghu escribió: Hi, I am trying to use Jquery pagination plugin. I

[jQuery] Re: [Pagination Plugin] How to use it?

2008-07-05 Thread Raghu
Hi, I have figured out. It is working perfectly fine for me. Thanks Raghu On Sat, Jul 5, 2008 at 6:28 PM, Raghu [EMAIL PROTECTED] wrote: Hi, I am trying to use Jquery pagination plugin. I have read documentation but things are still not clear to me. Can someone please help me? What exactly

[jQuery] Re: pagination

2007-08-12 Thread voltron
Hi! this is cool, could you post the main site to this plugin? I would like to see the docs Thanks On Aug 10, 10:43 pm, Web Specialist [EMAIL PROTECTED] wrote: Eridius jqGrid could be an option for you: this plugin haves a very nice pagination(recordset) example using ajax:

[jQuery] Re: pagination

2007-08-12 Thread Web Specialist
http://www.trirand.com/blog/?p=11 2007/8/12, voltron [EMAIL PROTECTED]: Hi! this is cool, could you post the main site to this plugin? I would like to see the docs Thanks On Aug 10, 10:43 pm, Web Specialist [EMAIL PROTECTED] wrote: Eridius jqGrid could be an option for you:

[jQuery] Re: pagination

2007-08-10 Thread Benjamin Sterling
http://rikrikrik.com/jquery/pager/#examples On 8/10/07, Eridius [EMAIL PROTECTED] wrote: I was wonding is a plug exist for jquery to handle pagintion? -- View this message in context: http://www.nabble.com/pagination-tf4250056s15494.html#a12095618 Sent from the JQuery mailing list archive

[jQuery] Re: pagination

2007-08-10 Thread Benjamin Sterling
I did not notice that, my bad. Not sure if there is one that works with ajax. On 8/10/07, Eridius [EMAIL PROTECTED] wrote: Form what i have been told, this only works for placing data in divs and i need one that work with ajax. bmsterling wrote:

[jQuery] Re: pagination

2007-08-10 Thread Web Specialist
Eridius jqGrid could be an option for you: this plugin haves a very nice pagination(recordset) example using ajax: http://trirand.com/jqgrid/jqgrid.html Cheers 2007/8/10, Benjamin Sterling [EMAIL PROTECTED]: I did not notice that, my bad. Not sure if there is one that works with ajax.

[jQuery] Re: pagination

2007-08-10 Thread Eridius
Form what i have been told, this only works for placing data in divs and i need one that work with ajax. bmsterling wrote: http://rikrikrik.com/jquery/pager/#examples On 8/10/07, Eridius [EMAIL PROTECTED] wrote: I was wonding is a plug exist for jquery to handle pagintion? -- View

[jQuery] Re: Pagination ajax

2007-04-30 Thread Sean Catchpole
I may have misinterpreted what you are trying to do, but perhaps this will work: $(navigation); function navigation() { $('.nav_paginacion ul li a').click(function() { $.get( this.href, function(data) { $(#comment_block).html(data); navigation(); }); return false; }); }