GithubHelp home page GithubHelp logo

Comments (5)

kswedberg avatar kswedberg commented on July 20, 2024

I can't reproduce the problem you're seeing ( http://plugins.learningjquery.com/expander/test/?single%20block%3A%20slicePoint%20200%2C%20without%20preserving%20word%20boundaries )

would you mind putting together a reduced test case that shows the problem so I can take a look at what's going on? something on http://jsfiddle.net or http://jsbin.com would be ideal.

thanks!

from jquery-expander.

S0VIET avatar S0VIET commented on July 20, 2024

jsfiddle wasn't working too well so I copied the source and made it work on this:

http://205.185.127.183/~soviet/test.html

As you can see, the first entry cuts off at 100 chars, and the second cuts off at the desired 200 chars.

from jquery-expander.

kswedberg avatar kswedberg commented on July 20, 2024

That's right. It's working exactly as you are instructing it to work. The first entry cuts off at 100 characters because you have called .expander() without any options and 100 characters is the default:
$('dl.expander dd:eq(0)').expander();

The second one cuts off at 200 characters because you are calling .expander() with a bunch of options (including slicePoint: 200) for every <dd> element greater than index 0 (all but the first, or ... :gt(0)):

$('dl.expander dd:gt(0)').expander({
        preserveWords: true,
        slicePoint: 200,
       // etc. 
  });

If you want all of them to act the same way, just remove the first call — the one without the options — and change the selector of the second to include all of the <dd> elements:

$('dl.expander dd').expander({ // your options go here });

from jquery-expander.

S0VIET avatar S0VIET commented on July 20, 2024

Thank you, that solved my problem. I'm not very good with Javascript as I haven't had the need to work with it's code excessively.

from jquery-expander.

kswedberg avatar kswedberg commented on July 20, 2024

No problem. Glad you were able to get it working.

from jquery-expander.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.