Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6597795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:15:15+00:00 2026-05-25T18:15:15+00:00

Hello I have a jQuery example that a thepost-preview div is replaced with the

  • 0

Hello I have a jQuery example that a thepost-preview div is replaced with the full post. Because I am having some troubles with PHP, instead of replacing the two div, I need the full post to be added right after the post-preview.

In this case, the thepost div content will have the reamining characters of the post.

This is because I am having some issues with substr and strip_tags in PHP.

So my Fiddle is here http://fiddle.jshell.net/r4F8Q/34/ any help is appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:15:15+00:00Added an answer on May 25, 2026 at 6:15 pm

    You can put the content on the page and use Html tags to define its structure (e.g. span, p, or div). Then find the pieces using jquery and use jQuery.html() to move the pieces around.

    http://fiddle.jshell.net/r4F8Q/35/

    var html = expanding
            ? $content.html()
            : $content.find('.intro').html();
        $display.html(html);
    

    Or, you can just use jquery to control the visibility of the additional content.

    http://fiddle.jshell.net/r4F8Q/37/

       $('.toggle').click(function(e) { 
        var $this = $(this);
        var $content = $this.siblings('.post-content').find('.additional');
        var expanding = ($this.text() == '(expand)');
        var html = expanding
            ? $content.show()
            : $content.hide();
        $this.text(expanding ? '(collapse)' : '(expand)') 
        e.preventDefault();
    });
    

    Or, if you really can’t get your PHP to structure your content, you can stuff the intro into jQuery.data() and pull the content out of there when collapsing.

    http://fiddle.jshell.net/r4F8Q/38/

        $('.post-display').each(function() {
        var $this = $(this);
        $this.data('intro', $this.html());
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I think that i have some problems with jquery selectors in IE. Chrome and
Hello I have been having trouble with this for a while now. I have
Hello I have this list that i am working on. When i move the
I have an ASP.NET user control that I want to write some dynamic Javascript
Is it possible to have jquery talk to my wcf service that is hosted
Fellow JQuery hackers, hello :-) Suppose you have the following code: $('.links').click(function(){ //Do something
I can't get Netbeans to auto-complete my selectors for JQuery, example: <a id=hello href=#>Hello</a>
Hello I am writing some jquery plugins, i read some tutorials finding all clear.
I have a div that scrolls (the main page does not have scrollbars) and
Hello Stack Overflow i hope you are well today; I have a form that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.