Awesome guys, thanks so much for all your input on this. I have
something working I'm happy with; making use of all your advice.
Take care!
L
On Apr 24, 6:44 am, MOZ wrote:
> How about this?
>
> Code:http://beski.wordpress.com/2009/04/24/show-more-comments-ajax-jquery-...
>
> Demo:http://mix26.
How about this?
Code:
http://beski.wordpress.com/2009/04/24/show-more-comments-ajax-jquery-php-mysql/
Demo:
http://mix26.com/demo/show_more/index.php
-Beschi
On Apr 22, 7:18 pm, ldexterldesign wrote:
> Hey guys,
>
> I have 10 separate posts displayed on a page. I want to hide 7 (of the
> olde
Hey Ricardo,
I've been playing around with this script, which you kindly wrote for
me, over the past hour. I think I can use it, although:
- I'd initially like the appropriate 'previous' and 'next' links left
out if there's no more posts to display. The problem is ATM 'previous'
does nothing ini
No need for IDs, you can do it all using the elements' indexes:
Assuming a structure like this:
...
...
Next 3
Previous 3
I'd use this. A bit busy, but it's short! :)
//hide all but the first 3 posts
$posts = $('#posts li').show();
$posts.filter(':gt(2)').hide();
//set the navigation
On Apr 22, 3:00 pm, ldexterldesign wrote:
> I really wanna be able to understand that regex - any hints? Looks
> interesting!
I do not know how to make use of regular expression within the context
of JQuery, as I am still quite new to the jQuery environment. JQuery
methods and Javascript functi
Hey Stephen,
Gonna have a good look at how you've done that now. Thanks ever so
much for the quick reply!
L
On Apr 22, 4:09 pm, MorningZ wrote:
> How's this for a quick mockup i made for you
>
> http://stuff.morningz.com/public/Coding/jQuery/show_more.htm
>
> On Apr 22, 10:18 am, ldexterldesig
Hey Tom,
I really wanna be able to understand that regex - any hints? Looks
interesting!
Thanks,
L
On Apr 22, 4:12 pm, Tom Worster wrote:
> On 4/22/09 10:18 AM, "ldexterldesign" wrote:
>
>
>
>
>
> > Hey guys,
>
> > I have 10 separate posts displayed on a page. I want to hide 7 (of the
> > old
On 4/22/09 10:18 AM, "ldexterldesign" wrote:
>
> Hey guys,
>
> I have 10 separate posts displayed on a page. I want to hide 7 (of the
> oldest) of them and display a link; 'show more posts' - kinda a
> pagination thing I guess.
>
> My PHP pumps out 10 posts, and I'd like to do the hide/show w
How's this for a quick mockup i made for you
http://stuff.morningz.com/public/Coding/jQuery/show_more.htm
On Apr 22, 10:18 am, ldexterldesign wrote:
> Hey guys,
>
> I have 10 separate posts displayed on a page. I want to hide 7 (of the
> oldest) of them and display a link; 'show more posts' -
9 matches
Mail list logo