Questions tagged [jquery-dotdotdot]

jquery-dotdotdot refers explicitly to the jQuery.dotdotdot plugin. The purpose of this plugin is to truncate long texts and ending them with a ... optionally with a "read more" link.

refers explicitly to the jQuery.dotdotdot plugin. The purpose of this plugin is to truncate long texts and ending them with a ..., optionally with a "read more" link.

A demo can be found on http://dotdotdot.frebsite.nl/
Source and documentation is found on https://github.com/FrDH/jQuery.dotdotdot

10 questions
3
votes
1 answer

Solution for Ellipsis - Jquery + Bootstrap + Datatables

I am using Datatables on a site with bootstrap and jquery for a large (2000+ entries) table. Some of the (text) values are way too long and at the moment I use something like this: render: function ( data, type, row ) { …
3
votes
2 answers

jquery .dotdotdot is not working

I've been trying to use jquery's dotdotdot method in order to cut off overflowed text, but for some reason it's not working. I was hoping the method would be pretty simple, but I don't know what I'm doing wrong.…
user1928545
2
votes
1 answer

missing values from spread operator

let arr1 = [1, -2, 3, 4]; let arr2 = [8, 3, -8, 1]; function fun() { console.log(arguments) } const fun1 = (...n) =>{ console.log(n) } fun.call(...arr1, ...arr2) output : [object Arguments] { 0: -2, 1: 3, 2: 4, 3: 8, 4: 3, 5: -8, 6:…
2
votes
1 answer

jQuery.dotdotdot on grid layout -> empty spaces

I am designing a site using jQuery, Modernizr and some plugins (jQuery.dotdotdot, MixItUp). As a base I have chosen this work from codyhouse . So, the MixItUp functionality (filtering) works great and I don't have any issue there. The problem comes…
sogeking
  • 1,216
  • 2
  • 14
  • 45
1
vote
1 answer

Auto identify Height in dotdotdot plugins

How to set auto height from css in jquery dotdotdot plugins. note: I use dotdotdot plugins. For Example: .dot{ overflow: hidden; width: 150px; display: inline-block; } .paragraph-1{ height: 100px; background-color:…
Mahdi Bashirpour
  • 17,147
  • 12
  • 117
  • 144
1
vote
2 answers

jquery dotdotdot plugin is not woriking for dynamically created html

I am creating elements using: $('#articleview').append(articles); I need to apply the dotdotdot plugin to this dynamically created html $(document).ready(function() { $(".ellipsis").dotdotdot(); }); but it's not working in dynamically created…
Vinoth
  • 23
  • 5
0
votes
1 answer

Errors when accessing site from Internet Explorer

When I access this site from Internet Explorer 11 I got these three errors. If I use other browser everything is going ok, what can be the problem?
andy
  • 61
  • 6
0
votes
1 answer

Dotdotdot library removing text

Dotdotdot library removing my text on newer versions of Chrome Browser using jquery dotdotdot version 1.6.10 and have try later versions as well. It flashes on initial page load then disappears. I know I can do this with CSS but working a big site…
roshambo
  • 2,624
  • 6
  • 31
  • 54
0
votes
2 answers

jQuery dotdotdot plugin disable knocokut bindings

I have a problem with .dotdotdot jQuery plugin used with KnockoutJS. I have similar structure:

0
votes
1 answer

Intermittent Truncation using Jquery.dotdotdot

I am using jquery.dotdotdot to truncate lengthy text on the Tiles on the Carousel. Truncation sometimes is intermittently truncating less than the expected result. (e.g. truncate a text to 4 lines but at some point it only truncates to 3 lines.) On…
Jovit Mayo
  • 121
  • 4